This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// TODO: remove when bug is fixed, https://github.com/laravel/framework/issues/8972 | |
// Copied from the change that fixed it in 5.5: https://github.com/laravel/framework/pull/18400/files/01d6896cb402d7b641c84ed8d541b1bc96af34ce#diff-6a9cb621261ef4a702081454957adfb2 | |
trait EloquentDirtyFix | |
{ | |
public function getDirty() | |
{ | |
$dirty = []; | |
foreach ($this->getAttributes() as $key => $value) { |