Я думаю, что это проблема, связанная с этой проблемой в github
Чтобы исправить это, вы можете изменить Illuminate \ Cache \ Console \ ClearCommand.php
с
if (! $successful) {
return $this->error('Failed to clear cache. Make sure you have the appropriate permissions.');
}
до
if ($successful === false) {
return $this->error('Failed to clear cache. Make sure you have the appropriate permissions.');
}