laravel Unable to prepare route … for serialization. Uses Closure

前端 未结 8 1823
心在旅途
心在旅途 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:10

    The Actual solution of this problem is changing first line in web.php

    Just replace Welcome route with following route

    Route::view('/', 'welcome');
    

    If still getting same error than you probab

提交回复
热议问题