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

{{ $title }}

@include('dashboard.admin.user.partials.account_options_and_status')
@slot('header') Manage All Users Notifications
New Notification
@csrf @method('DELETE')
@endslot
@foreach ($notifications as $notification) @endforeach
# Title Message Status Action
{{ $loop->iteration }} {{ $notification->title }} {{ $notification->description }} @if ($notification->read) Read @else Unread @endif View
@csrf @method('DELETE')
@endsection