芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Jobs/CreateCustomerFromMerchant.php
merchant = $merchant; } /** * Execute the job. * * @return void */ public function handle() { Customer::create([ 'name' => $this->merchant->name, 'email' => $this->merchant->email, 'password' => $this->merchant->password, 'verification_token' => $this->merchant->verification_token, ]); } }