@if (\Illuminate\Support\Facades\Session::has("flash_notification"))
@php $sessions = \Illuminate\Support\Facades\Session::get("flash_notification") @endphp @foreach($sessions as $each) @if ($each->message) @if ($each->overlay) @include('flash::modal', ['modalClass' => 'flash-modal', 'title' => $each->title, 'body' => $each->message]) @else
{{ $each->message }}
@endif @endif @endforeach {{-- @if (Session::has('flash_notification.message'))--}} {{-- @if (Session::has('flash_notification.overlay'))--}} {{-- @include('flash::modal', ['modalClass' => 'flash-modal', 'title' => Session::get('flash_notification.title'), 'body' => Session::get('flash_notification.message')])--}} {{-- @else--}} {{--
--}} {{-- --}} {{-- {{ Session::get('flash_notification.message') }}--}} {{--
--}} {{-- @endif--}} {{-- @endif--}}
@endif