{{-- notifications/index.blade.php --}} @extends('patient.layouts.app') @section('title','الإشعارات') @section('content')
الإشعارات
@if($notifications->isNotEmpty())
@csrf
@endif
@forelse($notifications as $notif)
{{ $notif->icon }}
{{ $notif->title }}
{{ $notif->body }}
{{ $notif->created_at->diffForHumans() }}
@if(!$notif->is_read) @endif
@empty
لا توجد إشعارات
@endforelse @if($notifications->hasPages())
{{ $notifications->links('pagination::bootstrap-5') }}
@endif @endsection