request = $this->getRequestInstance($request); $this->request->merge(['created_by' => user_id()]); } /** * Execute the job. * * @return Contact */ public function handle() { \DB::transaction(function () { if ($this->request->get('create_user', 'false') === 'true') { $this->createUser(); } $this->contact = Contact::create($this->request->all()); // Upload logo if ($this->request->file('logo')) { $media = $this->getMedia($this->request->file('logo'), Str::plural($this->contact->type)); $this->contact->attachMedia($media, 'logo'); } }); return $this->contact; } public function createUser() { // Check if user exist if ($user = User::where('email', $this->request['email'])->first()) { $message = trans('messages.error.customer', ['name' => $user->name]); throw new \Exception($message); } $data = $this->request->all(); $data['locale'] = setting('default.locale', 'en-GB'); $customer_role = Role::all()->filter(function ($role) { return $role->hasPermission('read-client-portal'); })->first(); $user = User::create($data); $user->roles()->attach($customer_role); $user->companies()->attach($data['company_id']); $this->request['user_id'] = $user->id; } }