Notifications
Today
-
@forelse ($todayNotifications as $notification)
-
{{ $notification->notice }}
{{--{{ $notification->message }}
--}} Date: {{ Carbon::parse($notification->created_at)->format('h:i A') }} || {{ Carbon::parse($notification->created_at)->format('d-m-Y') }} ||
@empty
No Today Notifications
@endforelseYesterday
-
@forelse ($yesterdayNotifications as $notification)
-
{{ $notification->notice }}
{{--{{ $notification->message }}
--}} Date: {{ Carbon::parse($notification->created_at)->format('h:i A') }} || {{ Carbon::parse($notification->created_at)->format('d-m-Y') }} ||
@empty
No Yesterday Notifications
@endforelseOthers
-
@forelse ($otherNotifications as $notification)
-
{{ $notification->notice }}
{{--{{ $notification->message }}
--}} Date: {{ Carbon::parse($notification->created_at)->format('h:i A') }} || {{ Carbon::parse($notification->created_at)->format('d-m-Y') }} ||
@empty
No Other Notifications
@endforelse