Description
If you are editing an entry, save it and try to get a new instance with the fresh() method you will get the outdated entry back.
Example
$entry->set('title', 'New Title');
$entry->save();
dd(
$entry->fresh()->title,
\Statamic\Facades\Entry::query()->where('id', $entry->id)->first()->title,
);
This will output two different values.