@extends('layouts.user', ['heading' => 'Notifications']) @section('content')
@forelse($notifications as $notification)
{{ $notification->title ?? $notification->type }}
{{ optional($notification->created_at)->format('d M Y, h:i A') }}
{{ $notification->message }}
@if($notification->link) Open @endif
@empty
No notifications yet.
@endforelse
{{ $notifications->links() }}
@endsection