191e48dbc33bec26282326c2f273ebda5cc6c5b9.php 659 B

12345678910111213
  1. <?php if(Session::has('toastr')): ?>
  2. <?php
  3. $toastr = Session::pull('toastr');
  4. $type = \Illuminate\Support\Arr::get($toastr->get('type'), 0, 'success');
  5. $message = \Illuminate\Support\Arr::get($toastr->get('message'), 0, '');
  6. $options = json_encode($toastr->get('options', []));
  7. ?>
  8. <script>
  9. $(function () {
  10. toastr.<?php echo e($type, false); ?>('<?php echo $message; ?>', null, <?php echo $options; ?>);
  11. });
  12. </script>
  13. <?php endif; ?><?php /**PATH C:\phpstudy_pro\WWW\cydsyy-api\vendor\encore\laravel-admin\src/../resources/views/partials/toastr.blade.php ENDPATH**/ ?>