php - McamaraLaravelLocalizationExceptionsSupportedLocalesNotDefined error given after install
Solution:
look.. if you have this line in Web.php file
Route::group(['prefix' => LaravelLocalization::setLocale(), 'middleware' => ['localeSessionRedirect', 'localizationRedirect', 'localeViewPath']], function ()
1- make it's as comment and run in terminal : php artisan config:clear. php artisan config:cache.
2- then delete comment from line.
Answer
Solution:
php artisan config:cache
is fixed all.
Source