I'm having trouble with Cron running commands in Laravel 5.5
, run the command only every minute, not following the frequency options like 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?