@if($notificationCount > 0) @endif
Notifications @if($notificationCount > 0) {{ $notificationCount }} @endif
@if($notificationCount == 0)

No notifications

@else @if($lowStockNotifications->count() > 0)
LOW STOCK
@foreach($lowStockNotifications as $item)
Low Stock Alert

{{ $item->item_name }}
Stock: {{ $item->item_quantity }} / Minimum: {{ $item->minimum_stock }}

@endforeach @endif @if($newOrderNotifications->count() > 0)
NEW ORDERS
@foreach($newOrderNotifications as $order)
New Order Received

Order #{{ $order->order_id }}
Amount: Rs. {{ number_format($order->total_amount, 2) }}

@endforeach @endif @if($paymentNotifications->count() > 0)
PAYMENTS
@foreach($paymentNotifications as $payment)
Payment Received

Payment #{{ $payment->payment_id }}
Amount: Rs. {{ number_format($payment->amount_paid, 2) }}

@endforeach @endif @endif
View Reports