8 lines
238 B
PHP
8 lines
238 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command('payroll:generate --current')->monthly();
|
|
Schedule::command('stock-opname:generate')->monthly();
|
|
Schedule::command('stock-opname:set-to-process')->monthlyOn(25, '00:00');
|