会话在laravel中到期,并在提交表单后注销用户

时间:2018-12-12 15:05:26

标签: php laravel forms session laravel-5

我正在用PHP开发应用程序。当我提交表单时,Laravel使会话期满,然后注销用户。

我的观点

{!!Form::open(['action' => 'PostsController@store', 'method' => 'POST', 'enctype'=> 'multipart/form-data', 'class'=>'', 'data-smk-icon'=>"fas fa-exclamation"])!!}
      <div class="form-group">
            <label for="titulo" class="label-input100">Title</label>
            <input type="text" name="titulo" class="i form-control">
        </div> @csrf

        <button type="submit"> Publish</button>
    {!!Form::close()!!}

我的控制器

public function store(Request $request)
{  
    $post = Post::find(2);
    return 'Details:' . $post;
}

我的路线

Route::resource('/artigos','PostsController');

由于此错误,我不得不重新启动整个项目,但是仍然存在。

0 个答案:

没有答案
相关问题