{{ $unReadNotificationsCount }}
{{__("Alerts Center")}}
@forelse($unReadNotifications as $notification)
{{ $notification->data['created_date'] }}
@if($notification->type == \App\Notifications\Backend\User\ReturnRequestOrderNotification::class) {{__("A return request with amount (:amount) from :from",['amount' => format_amount($notification->data['amount']) , "from" => $notification->data['user_name']])}} @else {{__("A new order with amount (:amount) from :from",['amount' => format_amount($notification->data['amount']) , "from" => $notification->data['user_name']])}} @endif
@empty
{{__("No notifications found.")}}
@endforelse {{-- Show All Alerts--}}