Add a scheduled job https://laravel.com/docs/9.x/scheduling#introduction
$schedule->command('cache:clear')->daily();
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
There are any way to clear cache every day or every time interval automatically not manually ? no for clearing cache I run php artisan opimize in the server ( to clear all caches), but it's not parctice, also I defined a route to clear cache like this :
Route::get('/clear-cache', function() {
$exitCode = Artisan::call('cache:clear');
});
but I don't know how to execute this route automatically
Please or to participate in this conversation.