fix : update visto errorPresupuestoForm

This commit is contained in:
amazuecos
2024-10-19 10:00:31 +00:00
parent 859f2a99be
commit ac3a93370c

View File

@ -35,7 +35,8 @@ class ConfigErrores extends BaseResourceController
public function viewForm(int $error_presupuesto_id)
{
$this->errorPresupuestoModel->update($error_presupuesto_id, [
"last_user_id" => auth()->user()->id
"last_user_id" => auth()->user()->id,
"visto" => true,
]);
return view(static::$viewPath . 'viewErrorPresupuestoForm', ["error_presupuesto_id" => $error_presupuesto_id]);
}