alert.blade.php 271 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($icon)<i class="icon fa fa-{{ $icon }}"></i>@endif {!! $title !!}</h4>
  7. @endif
  8. {!! $content !!}
  9. </div>