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

21 行
507B

  1. <?php
  2. namespace App\Console\Schedules;
  3. use App\Console\Commands\SummaryUse as Command;
  4. use Illuminate\Console\Scheduling\Schedule;
  5. class SummaryUse extends BaseSchedule
  6. {
  7. static public function register(Schedule $schedule)
  8. {
  9. $schedule->command(Command::class, ['--current'])
  10. ->everyTenMinutes()
  11. ->description("利用集計(当月)");
  12. $schedule->command(Command::class)
  13. ->monthlyOn(5)
  14. ->description("利用集計(前月)");
  15. }
  16. }