# Phase 7 Queue Setup

## Queue Components
- `SendNotificationJob` handles in-app/email/whatsapp-ready dispatch.
- Listeners implement `ShouldQueue` for non-blocking processing.

## Required Runtime
1. Queue worker:
   - `php artisan queue:work`
2. Scheduler worker (for periodic checks):
   - `php artisan schedule:work`

## Scheduled Commands
- `flowieons:send-reminders` every 5 minutes
- `flowieons:run-escalations` hourly
