@extends('admin._layout') @section('title', 'الإشعارات') @push('head') @endpush @php $iconFor = fn ($type) => match ($type) { 'success' => 'check', 'warning' => 'alert-triangle', 'danger' => 'alert-octagon', default => 'info-circle', }; @endphp @section('content')
@if($notifications->isEmpty())

لا توجد إشعارات

سيظهر هنا أي حدث مهم في النظام (إنشاء عيادة، انتهاء اشتراك، …).

@else @foreach($notifications as $n)
@if($n->action_url) {{ $n->title }} @else
{{ $n->title }}
@endif {{ $n->created_at->diffForHumans() }}
@if($n->body)
{{ $n->body }}
@endif
@endforeach @if($notifications->hasPages()) @endif @endif
@endsection @push('scripts') @endpush