• {{ $notifications->count() ?: '' }}
    • {{ $notifications->count() }} اعلان جدید

    • @foreach ($notifications as $notification) @if($notification->type == 'OrderPaid')
      سفارش جدید ثبت شد
      {{ $notification->data['message'] }}
      {{ jdate($notification->created_at)->ago() }}
      @elseif($notification->type == 'UserRegistered')
      کاربر جدید ثبت نام کرد
      {{ $notification->data['message'] }}
      {{ jdate($notification->created_at)->ago() }}
      @elseif($notification->type == 'ContactCreated')
      پیام جدید دریافت شد
      {{ $notification->data['message'] }}
      {{ jdate($notification->created_at)->ago() }}
      @endif @endforeach
    • نمایش همه اعلان ها