[Symfony\Component\Debug\Exception\FatalThrowableError] Class 'LaravelLocalization' not found

GDevil1994發表於2017-04-24

composer install 或者 php artisan 遇到:

  [Symfony\Component\Debug\Exception\FatalThrowableError]
  Class 'LaravelLocalization' not found

解決辦法:
composer install –no-scripts
首先在路由裡面註釋掉這兩句:

'prefix' => LaravelLocalization::setLocale(),
'middleware' => ['localeSessionRedirect', 'localizationRedirect']

執行composer update
然後執行:php artisan config:cache
去掉註釋即可

相關文章