Create prosess for check moving machine in mission

This commit is contained in:
2025-11-12 21:52:41 +03:30
parent 2993adf5cd
commit 69430cf7bc
12 changed files with 287 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ class Kernel extends ConsoleKernel
protected $commands = [
'App\Console\Commands\RoadObservationProblems', //// road observed webservice from 141 sawaneh
'App\Console\Commands\SendContractSmsNotification', //// road observed webservice from 141 sawaneh
'App\Console\Commands\DailyMovingMachineCommand',
];
/**
@@ -48,6 +49,9 @@ class Kernel extends ConsoleKernel
->dailyAt('04:00')
->appendOutputTo(storage_path('logs/telescope.log'));
$schedule->command('daily_moving_machine')
->dailyAt('23:59')->appendOutputTo(storage_path('logs/dailymovingmachine.log'));
}
/**