Check if altered value changed key

Ever wanted to know if the changes you've made to a model have altered the value for a key? No problem, simply reach for originalIsEquivalent.

$user = User::first(); // ['name' => "John']
 
$user->name = 'John';
 
$user->originalIsEquivalent('name'); // true
 
$user->name = 'David'; // Set directly
$user->fill(['name' => 'David']); // Or set via fill
 
$user->originalIsEquivalent('name'); // false

Tip given by @mattkingshott

Like our articles?

Become a Premium Member for $129/year or $29/month
What else you will get:
  • 59 courses (1057 lessons, total 42 h 44 min)
  • 79 long-form tutorials (one new every week)
  • access to project repositories
  • access to private Discord

Recent Premium Tutorials