laravel check if field has changed code example
Example 1: laravel model is dirty
if($product->isDirty()){
// changes have been made
}
Example 2: laravel check model column was changed
class UserObserver
{
/**
* Listen to the User created event.
*
* @param \App\User $user
* @return void
*/
public function updating(User $user)
{
if($user->isDirty('email')){
// email has changed
$new_email = $user->email;
$old_email = $user->getOriginal('email');
}
}
}
Example 3: laravel check if field has changed
if($product->isDirty('price')){
// price has changed
}