@extends('admin.layouts.master') @section('title', 'الإشعارات') @section('content')
@include('admin.partials.page-header', [ 'title' => 'الإشعارات', 'breadcrumbs' => $breadcrumbs, ]) @include('admin.partials.alerts')

إجمالي الإشعارات غير المقروءة

{{ $unreadCount }}
@if($unreadCount > 0)
@csrf
@endif
قائمة الإشعارات
@forelse($notifications as $notif)
{{ $notif->title }}

{{ $notif->message }}

{{ $notif->created_at->diffForHumans() }}
@empty
لا توجد إشعارات
@endforelse
@endsection