- Add database migrations for plans, subscriptions, notification preferences, and notification log tables - Implement DispatchUserNotificationJob to handle channel resolution, daily limits, and logging (sent/tier_restricted/daily_limit) - Add SendScheduledWhatsAppJob for scheduled notification delivery - Create PlanFeatures service to resolve tier capabilities, check daily limits, and validate fuel
17 lines
326 B
PHP
17 lines
326 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Plans\Pages;
|
|
|
|
use App\Filament\Resources\Plans\PlanResource;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListPlans extends ListRecords
|
|
{
|
|
protected static string $resource = PlanResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|