How to change a column in users table after reseting password ? (like last_change_password) ?

Hi ! I made a Page for the first time connection of my users, and I have a date column set to null by default. I want to change this to the actual date when they submit the resetpassword form
2 Replies
toeknee
toeknee2w ago
You can just create an observe and monitor when the password is dirty and update last_change_password to now? so
<?php

namespace App\Observers;

use App\Models\User;

class UserObserver
{
public function updating(User $user)
{
if ($user->isDirty('password')) {
$user->last_change_password = $user->updated_at;
}
}
}
<?php

namespace App\Observers;

use App\Models\User;

class UserObserver
{
public function updating(User $user)
{
if ($user->isDirty('password')) {
$user->last_change_password = $user->updated_at;
}
}
}
and in your app service provider
public function boot()
{
User::observe(UserObserver::class);
}
public function boot()
{
User::observe(UserObserver::class);
}
Nashoba
NashobaOP2w ago
Ok thank you i try this ! ok so I made the same thing as you :
public function updated(User $user): void
{
if ($user->isDirty('password')) {
$user->last_change_password = $user->updated_at;
$user->save();
}
}


and I add the $user->save();
public function updated(User $user): void
{
if ($user->isDirty('password')) {
$user->last_change_password = $user->updated_at;
$user->save();
}
}


and I add the $user->save();
without it's not saving the data in the db but with it is loading infinitely ok I found the issue, I used updated instead of updating

Did you find this page helpful?