admin = $admin; } /** * Build the message. * * @return $this */ public function build() { return $this->from(core()->getSenderEmailDetails()['email'], core()->getSenderEmailDetails()['name']) ->to($this->admin->email, $this->admin->name) ->subject(trans('shop::app.mail.update-password.subject')) ->view('shop::emails.admin.update-password', ['user' => $this->admin]); } }