12345678910111213141516171819202122232425262728293031 |
- <?php
-
- namespace App\Console\Commands;
-
- use App\Jobs\ProcessOverdueInvoices;
- use Illuminate\Console\Command;
-
- class UpdateOverdueInvoices extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'app:update-overdue-invoices';
-
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Check and mark overdue invoices as overdue';
-
- /**
- * Execute the console command.
- */
- public function handle(): void
- {
- ProcessOverdueInvoices::dispatch();
- }
- }
|