label('Trigger Full Poll') ->icon('heroicon-o-arrow-path') ->requiresConfirmation() ->modalHeading('Trigger full station refresh?') ->modalDescription('This dispatches a background job to refresh all ~14,500 stations from the Fuel Finder API. Results will appear in API Logs once complete.') ->action(function () { PollFuelPricesJob::dispatch(); Notification::make() ->title('Poll dispatched to queue') ->body('Check API Logs once the job completes.') ->success() ->send(); }), ]; } }