Laravel 5.2 validation errors

后端 未结 9 739
隐瞒了意图╮
隐瞒了意图╮ 2020-11-30 06:41

I have some trouble with validation in Laravel 5.2 When i try validate request in controller like this

$this->validate($request, [
                \'title         


        
9条回答
  •  不知归路
    2020-11-30 07:06

    Wrap you Routes in web middleware like below:

    Route::group(['middleware' => ['web']], function () {
        // Add your routes here
    });
    

    and In app\Http\Kernel.php move \Illuminate\Session\Middleware\StartSession::class from the web $middlewareGroups to $middleware

    Hope it will solve your problem.

提交回复
热议问题