FlowBite Logo The Unlock Travels & Tours
@php $notification = auth()->user()->unreadNotifications; @endphp
@if($notification->count() > 0)
@foreach ($notification as $noti)
@if ($noti->type == 'App\Notifications\BookingReceived')
{{$noti->data['message']}}
@endif

{{$noti->created_at->diffForHumans()}}

@endforeach
@endif

{{ auth()->user()->name }}

{{ auth()->user()->email }}

    {{ __('Profile') }}
    @csrf {{ __('Log Out') }}