27 lines
599 B
PHP
Executable File
27 lines
599 B
PHP
Executable File
<div {{ $attributes->merge(['class' => $makeAlertClass()]) }}>
|
|
|
|
{{-- Dismiss button --}}
|
|
@isset($dismissable)
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">
|
|
×
|
|
</button>
|
|
@endisset
|
|
|
|
{{-- Alert header --}}
|
|
@if(! empty($title) || ! empty($icon))
|
|
<h5>
|
|
@if(! empty($icon))
|
|
<i class="icon {{ $icon }}"></i>
|
|
@endif
|
|
|
|
@if(! empty($title))
|
|
{{ $title }}
|
|
@endif
|
|
</h5>
|
|
@endif
|
|
|
|
{{-- Alert content --}}
|
|
{{ $slot }}
|
|
|
|
</div>
|