Bootstrap
アラートからアラートに切り替えたいと思っていToastr
ます。私の現在の作業設定は次のとおりです。
@if (Session::has('flash_notification.message'))
<div class="alert alert-{{ Session::get('flash_notification.level') }}">
<button type="button" class="close" data-dismiss="alert"
aria-hidden="true">×</button>
{{ Session::get('flash_notification.message') }}
</div>
@endif
しかし、JS内でLaravelのセッション変数にアクセスするのに苦労しています。
実際の JS の動作例は次のとおりです。
$(document).ready(function() {
toastr.info('Page Loaded!');
});
});
しかし、Laravel のセッション変数を使用して、さまざまなメッセージと警告ボックスを含めたいと考えています。
@if (Session::has('flash_notification.message'))
<script>
$(document).ready(function() {
toastr.options.timeOut = 4000;
toastr.{{ Session::get('flash_notification.level') }}('{{ Session::get('flash_notification.message) }}');
});
</script>
@endif
などのさまざまなエラーが発生しunexpected ;
ます。どんな助けでも大歓迎です。どうもありがとう。