|
@@ -13,7 +13,7 @@ class SystemUser extends Model
|
|
|
{
|
|
|
public static function createMerchant(DataMerchants $merchants){
|
|
|
$has=self::where('username',$merchants->contact_phone)->find();
|
|
|
- throw_if($has,'该商家已存在无法创建');
|
|
|
+ $has && throw_user('该商家已存在无法创建');
|
|
|
$user=new self;
|
|
|
$user->username=$merchants->contact_phone;
|
|
|
$user->contact_phone=$merchants->contact_phone;
|