1 回答
TA贡献2021条经验 获得超8个赞
为了传递一篇文章进行编辑,您必须像这样传递这篇文章:
路线
Route::get('/post/edit/{post}', 'PostController@edit')->name('post.edit');
控制器
public function edit(Post $post)
{
return view('posts.edit', compact('post'));
}
刀片锉刀
<label for="about" class="col-md-4 col-form-label text-md-right">{{ __(' post about') }}</label>
<div class="col-md-6">
<input id="about" type="text" class="form-control @error('about') is-invalid @enderror" name="about" value="{{ old('about') ?? $post->about }}" required autocomplete="about" autofocus>
@error('about')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
- 1 回答
- 0 关注
- 91 浏览
添加回答
举报