@extends('page.user-dashboard.app') @section('content_dash')

{{__('dashboard.notification.title')}}

{{__('dashboard.notification.subtitle')}}

@forelse ($notifications as $notification)

{{ $notification->title }}

{!! $notification->message !!}
{{ $notification->created_at->diffForHumans() }}
Details
@empty
No notifications available
@endforelse
@endsection