Notifikasi

Status pesanan dan pemberitahuan penting.

@if($unpaidCount > 0 || $pendingCount > 0)
@if($unpaidCount > 0) {{ $unpaidCount }} Belum Bayar @endif @if($pendingCount > 0) {{ $pendingCount }} Diproses @endif
@endif
@if($notifications->isEmpty())

Tidak Ada Notifikasi

Semua pesanan Anda dalam kondisi baik. Tidak ada yang memerlukan perhatian saat ini.

Mulai Belanja
@else
@foreach($notifications as $notification)
@if($notification['icon'] === 'credit-card') @elseif($notification['icon'] === 'truck') @else @endif

{{ $notification['title'] }}

{{ $notification['message'] }}

{{ $notification['created_at']->diffForHumans() }}
Lihat Detail @if($notification['type'] === 'payment_required') Bayar Sekarang @endif
@endforeach
@endif