領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
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. }