laravel Unable to prepare route … for serialization. Uses Closure

前端 未结 8 1819
心在旅途
心在旅途 2020-11-30 04:48

When I clear caches in my Laravel 5.2 project, I see this error message:

[LogicException] Unable to prepare route [panel] for serialization. Uses Closure.

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 05:16

    If someone is still looking for an answer, for me the problem was in routes/web.php file. Example:

    Route::get('/', function () {
        return view('welcome');
    });
    

    It is also Route, so yeah...Just remove it if not needed and you are good to go! You should also follow answers provided from above.

提交回复
热议问题