this my error
return $this->getRouteForMethods($request, $others);} throw new NotFoundHttpException;} Symfony\Component\HttpKernel\Exception\NotFoundHttpException
so help me,
my route //proses update dan edit data Route::get('/karyawan/{id}/edit','App\Http\Controllers\KaryawanController@edit'); //update Route::post('/karyawan/{id}/update','App\Http\Controllers\KaryawanController@update');
//my controller
public function edit($id)
{
$karyawan = \App\Models\Karyawan::find($id);
return view('karyawan.edit', ['karyawan' => $karyawan]);
}
//update
public function update(Request $request,$id)
{
$karyawan = \App\Models\Karyawan::find($id);
$karyawan->update($request->all());
return redirect('/karyawan')->with('sukses','Data Berhasil Ditambahkan');
}
my form
<form action="/karyawan/{{$karyawan->id}}/update" method="POST"> {{csrf_field()}thanks
Can you format your code please? It's impossible right now to read it.
And please explain better your issue, I can't really get it.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community