routes/web.php dosyasına aşağıdaki kod ekleyerekte sonra site.com/clear-cache adresine girip cache temizleyebilirsiniz ssh uğraşmadan yada manuel olarak storage/framework/cache/data klasörü içerisindeki dosyaları temizleyebilirsiniz.
web.php
Route::get('/clear-cache', function () {
IlluminateSupportFacadesArtisan::call('cache:clear ');
IlluminateSupportFacadesArtisan::call('route:clear ');
return "Cache cleared successfully";
});