toastr.blade.php 438 B

12345678910111213
  1. @if(Session::has('toastr'))
  2. @php
  3. $toastr = Session::get('toastr');
  4. $type = array_get($toastr->get('type'), 0, 'success');
  5. $message = array_get($toastr->get('message'), 0, '');
  6. $options = json_encode($toastr->get('options', []));
  7. @endphp
  8. <script>
  9. $(function () {
  10. toastr.{{$type}}('{!! $message !!}', null, {!! $options !!});
  11. });
  12. </script>
  13. @endif