I am trying to figure out how to update a table in controller without updating the column updated_at
I don't want to completely stop updated_at I am using it in other places, I just want to update something and not update the updated_at in a certain place
I tried
$model->timestamps = false;
$model->save();
it still updates the updated_at column