Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

BayronVazquez's avatar

BayronVazquez wrote a reply+100 XP

4mos ago

Schedule:list - description with a closure?

thank you, this works fine in laravel 12

BayronVazquez's avatar

BayronVazquez liked a comment+100 XP

4mos ago

Schedule:list - description with a closure?

@sr57 not sure why it's not part of the docs but after checking the framework itself you could do it like this:

$schedule->call(function () {
	DB::table('recent_users')->delete();
})->daily()->name('My Description');

//or

$schedule->call(function () {
	DB::table('recent_users')->delete();
})->daily()->description('My Description');