I just on my cronjobs actually called as a cron. But my host does not allow the addition of a cronjobs internally, I have to setup an URL which is called.
So basically I setup the routes.php as written within the documentation:
namespace My\Plugin
use Illuminate\Support\Facades\Artisan;
use Route;
Route::get('/crons', function () {
Artisan::call('my-plugin:my-command');
});
And well it works well if I call the /crons url.
However, I defined a schedule within the Plugin.php and I wonder if I could call this, too, instead of redefining everything within the routes.php file.
The crontable is designed to fire once a minute only.
When I checked the code (years ago), seconds did not matter, just the hour and minutes. This would mean that if you ran it twice in the same minute, the same schedule would run twice.
This logic may have changed in newer Laravel versions, but I doubt it.