Posts by Gabriel krysa • 1 point
2 posts
-
0
votes2
answers658
viewsA: Errors with Put and Delete methods - Methodnotallowedhttpexception - Laravel and Angular
Could be the route cache php artisan route:cache and then search your route php artisan route:list --name=nome_da_sua_rota and there you can check for sure if your route exists and this with the…
-
0
votes3
answers684
viewsA: Update registration with Laravel 5.2?
You can do it that way public function update(Request $request, $id) { $produto = Produto::findOrFail($id); $produto->update($request->all()); return view('view'); }…