alert.blade.php 275 B

123456789
  1. <div {!! $attributes !!} >
  2. @if($showCloseBtn)
  3. <button type="button" class="close" data-dismiss="alert">×</button>
  4. @endif
  5. @if($title)
  6. <h4>@if(! empty($icon))<i class="{{ $icon }}"></i>&nbsp;@endif {!! $title !!}</h4>
  7. @endif
  8. {!! $content !!}
  9. </div>