@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

@slot('header') Read All @endslot {{-- ── DESKTOP TABLE (lg and above) ── --}}
@foreach ($notifications as $notification) @endforeach
# Title Message Status Action
{{ $loop->iteration }} {{ $notification->title }} {{ $notification->description }} @if ($notification->read) Read @else Unread @endif View
{{-- ── MOBILE / TABLET CARDS (below lg) ── --}}
@foreach ($notifications as $notification)
{{-- Top row: index + status --}}
#{{ $loop->iteration }} @if ($notification->read) Read @else Unread @endif
{{-- Title --}}

{{ $notification->title }}

{{-- Message --}}

{{ $notification->description }}

{{-- Action --}} View Notification
@endforeach
@endsection