我需要将一个用户的点转移到另一个用户

时间:2017-10-09 11:55:47

标签: laravel

我需要将点从一个用户转移到另一个用户,任何人都可以告诉我如何继续这样做。 我想将属于用户A的点数据复制到用户B.首先,我将获得用户A的数据。

1 个答案:

答案 0 :(得分:0)

让我们假设用户A有6个点,你想用一个可怜的点将它传递给用户B.

$userB =User::where('email', 'b@mail.com')->first(); //get userB 
$userA =User::where('email', 'a@mail.com')->first(); //get userA 
//dont worry if you have these objects already.
//Now to transfer point

$userB->point =$userA->point;  //the transfer has happened;
$userB->update();