1
I’m having trouble running Cron commands on Laravel 5.5
, executes the command only every minute, not obeying the frequency options as every 5 minutes.
Example:
$schedule->command('create:log')->everyFiveMinutes();
My cron is like this:
* * * * * php /var/www/html/Test/artisan create:log >> /dev/null 2>&1
Does anyone know what it can be?
Put the whole class
– novic