i need to create a function that records the date a field was updated.
Right now I have the code to update, but I don't know how to register a change and save a date
I thought to use Carbon :: now (), but how do I save the value in a table?
public function update(Request $request, $id){
$nuevoIngreso = \App\Models\Registro::find($id);
$nuevoIngreso->anticipo = $request->anticipo;
$nuevoIngreso->save();
return redirect('sistema')->with('mensaje', 'Ficha Actualizada.');
}
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire