{{ $unReadNotificationsCount }}
@forelse($unReadNotifications as $notification) @if ($notification->type == \App\Notifications\Frontend\User\OrderThanksNotification::class)
{{ $notification->data['created_date'] }}
{{__("Order #:id completed successfully",['id' => $notification->data['order_ref']])}}
@endif @if ($notification->type == \App\Notifications\Frontend\User\StatusNotification::class)
{{ $notification->data['created_date'] }}
{{__('Order #:id',['id' => $notification->data['order_ref']])}} @if(isset($notification->data['status'])) {!! $notification->data['status']['badge_label'] ?? "" !!} @else {{ $notification->data['last_transaction'] ?? "" }} @endif
@endif @empty
{{__("No notifications found!")}}
@endforelse