Posts by Saullo Almeida • 1 point
2 posts
-
0
votes3
answers684
viewsA: Update registration with Laravel 5.2?
public function update($id) { $produto= Produto::find($id); $produto->update(Input::all()); return view('suaView'); } Remembering to have the $fillable fields registered in the model for Mass…
-
0
votes1
answer446
viewsA: How to update data from an Laravel 5.2 registration?
public function update($id) { $profile = Profile::find($id); $profile->update(Input::all()); return view('suaView'); } Remembering to have the $fillable fields registered in the model for Mass…