Laravel 5.2 validation errors

后端 未结 9 735
隐瞒了意图╮
隐瞒了意图╮ 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:25

    This will work

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

    as well as this also works

    Route::post('location',array(
        'as'=>'location',
        'middlewareGroups'=>'web',
        'uses'=>'myController@function'
    ));
    

提交回复
热议问题