If you run php artisan list then you can find all the commands available for artisan, anyways, there is a command to clear the cache and it’s
php artisan cache:clear
Also, you can use
foreach (Cache::getMemory() as $cacheKey => $cacheValue)
{
Cache::forget($cacheKey);
}
Update:
Cache::flush();