:UrlGenerationException는 : 매개 변수를 필요 누락 [경로 : topics.update] [URI : 주제/{주제}]이 오류 받고 있어요
:이 편집 사용자를 취할 것입니다 링크Missing required parameters for [Route: topics.update] [URI: topics/{topic}]. (View: C:\xampp\htdocs\phpboards\resources\views\topics\edit.blade.php)
입니다 국도
$topic = Topic::find($id);
return view('topics.edit')->with('topic', $topic);
이는 다음과 같습니다 :
<a href="/boards/topics/edit/{{$topic->id}}" class="btn btn-default">Edit</a>
이 편집을위한 컨트롤러입니다
Route::get('/boards/topics/edit/{id}', '[email protected]');
이 편집의 형태이다 : 내가 잘못 여기
<div class="container">
{!! Form::open(['action' => '[email protected]', 'method' => 'POST']) !!}
<div class="form-group">
{{ Form::label('title', 'Title') }}
{{ Form::text('title', $topic->topic_title, ['class' => 'form-control', 'placeholder' => 'Title of the Post']) }}
</div>
<div class="form-group">
{{ Form::label('desc', 'Desc') }}
{{ Form::textarea('desc', $topic->topic_body, ['class' => 'form-control', 'placeholder' => 'Description of the Post']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-default']) }}
{!! Form::close() !!}
</div>
했을 무엇?
@ParantapParashar 그러나 무엇을 ?? 및 컨트롤러에 대한 ?? –
코드에 너무 많은 오류가 있습니다. –
나는 당신이 여기에 당신의 업데이트 방법과 Route를 두어야한다고 생각한다. –