其他编码人员。
每当我试图发布某些内容时,都会出现此错误。
<h1>Publish a Post</h1>
<hr>
<form method="POST" action="/posts">
{{ csrf_field() }}
<div class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" id="title" name="title">
</div>
<div class="form-group">
<label for="body">Body</label>
<textarea type="text" class="form-control" id="body" name="body"></textarea>
</div>
<button type="submit" class="btn btn-primary">Publish</button>
</form>
</div>
网状物php文件:
Route::get('/', 'PostController@index');
Route::get('/posts/create', 'PostController@create');
Route::get('/posts', 'PostController@store');
后置控制器。php文件:
public function create()
{
return view('posts.create');
}
public function store()
{
dd(request()->all());
}
和数据库架构:
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->text('body');
$table->timestamps();
});
}
如果有任何关于我做错了什么或如何解决这个问题的想法,我将不胜感激。