Support the ongoing development of Laravel.io →
Cache Views Laravel

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

Last updated 2 years ago.
0

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.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.