설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

alert.blade.php 349B

123456789
  1. @if (Session::has('alert.config'))
  2. @if(config('sweetalert.animation.enable'))
  3. <link rel="stylesheet" href="{{ config('sweetalert.animatecss') }}">
  4. @endif
  5. <script src="{{ $cdn?? asset('vendor/sweetalert/sweetalert.all.js') }}"></script>
  6. <script>
  7. Swal.fire({!! Session::pull('alert.config') !!});
  8. </script>
  9. @endif