Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Components

Olav van Schie edited this page May 31, 2017 · 7 revisions

Alert

@component('bootstrap-components::alert', ['severity' => 'danger'])
    This is the alert message
@endcomponent

Arguments:

  • severity => success / info / warning / danger (required)
  • class
  • dismissible => true / false
  • animate => true / false

Modal

@component('bootstrap-components::modal')
    @slot('title')
        This is the title
    @endslot

    This is the content of the modal

    @slot('title')
        This is the footer
    @endslot
@endcomponent

Arguments:

  • animation (default fade)
  • class
  • id

Slots:

  • title
  • footer
Clone this wiki locally