@extends('layouts.app') @section('title', 'الإشعارات') @push('styles') @endpush @section('content')

الإشعارات

{{ $unreadCount }} إشعار غير مقروء

@if($unreadCount > 0)
@csrf
@endif
@csrf
@forelse($notifications as $notification)
{{ $notification->title }}
{{ $notification->message }}
{{ $notification->created_at->diffForHumans() }}
@if(!$notification->isRead())
@csrf
@endif @if($notification->link) @endif
@csrf @method('DELETE')
@empty
لا توجد إشعارات

ستظهر هنا الإشعارات الجديدة عند وصولها

@endforelse @if($notifications->hasPages())
{{ $notifications->links() }}
@endif
@endsection