@if ($notes->isEmpty()) لا توجد ملاحظات @else
@foreach ($notes as $note) @php $badgeClass = match ($note->type) { 'system' => 'badge-info', 'user' => 'badge-primary', 'admin' => 'badge-warning', 'both' => 'badge-secondary', default => 'badge-light', }; @endphp
{{ $note->type_in_arabic }} {{ $note->note }} {{ $note->formatted_created_at }}
@endforeach
@endif