Classic #Laravel Tip: Scheduled tasks run sequentially in the order they are defined. To avoid long-running commands from causing delayed execution of subsequent tasks, either convert them to queued jobs or run those commands in the background. See: https://laravel.com/docs/11.x/scheduling#background-tasks
Comments