laravel Questions about firstOrCreate method
If it exists, the original data will be returned,
If it does not exist, it will be created
Then how do you know whether what he returns is the original one or the new one?
光阴似箭催人老,日月如移越少年。
wasRecentlyCreatedProperties.
wasRecentlyCreated
$user = User::firstOrCreate($userData); if($user->wasRecentlyCreated){ // 新用户处理 }
wasRecentlyCreated
Properties.