您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UpdateOverdueInvoices.php 582B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. class UpdateOverdueInvoices extends Command
  5. {
  6. /**
  7. * The name and signature of the console command.
  8. *
  9. * @var string
  10. */
  11. protected $signature = 'app:update-overdue-invoices';
  12. /**
  13. * The console command description.
  14. *
  15. * @var string
  16. */
  17. protected $description = 'Check and mark overdue invoices as overdue';
  18. /**
  19. * Execute the console command.
  20. */
  21. public function handle()
  22. {
  23. $this->info('Processing overdue invoices...');
  24. }
  25. }