Good afternoon everyone! I created the form, which will send to the "update" method of laravel
public function update(Request $r, Voluntarios $vol)
{
$up = $vol->update($r->all());
var_dump($up);
}
But it returns false, without saving ... what's wrong ??? I'm still learning, and I'm a little lost yet ... Thank you all!! Horacio