@endphp @extends('admin.layouts.master') @section('title', __('static.notifications.notification')) @section('content')

{{ __('static.notifications.notification') }}

@if ($notifications->count()) {{ __('static.notifications.all_clear') }} @endif
    @forelse($notifications as $notification)
  • {{ $notification->data['message'] ?? 'No message' }}

    {{ $notification->created_at->format('Y-m-d h:i:s A') }}
  • @empty
    {{ __('static.notifications.no_notification_found') }}
    @endforelse
@endsection @push('scripts') @endpush