quote = $quote; $this->company = $company; } public function build() { MultiDB::setDb($this->company->db); if (! $this->quote) { return; } App::forgetInstance('translator'); /* Init a new copy of the translator*/ $t = app('translator'); /* Set the locale*/ App::setLocale($this->company->getLocale()); /* Set customized translations _NOW_ */ $t->replace(Ninja::transformTranslations($this->company->settings)); $mail_obj = new stdClass; $mail_obj->amount = $this->getAmount(); $mail_obj->subject = $this->getSubject(); $mail_obj->data = $this->getData(); $mail_obj->markdown = 'email.admin.generic'; $mail_obj->tag = $this->company->company_key; return $mail_obj; } private function getAmount() { return Number::formatMoney($this->quote->amount, $this->quote->client); } private function getSubject() { return ctrans( 'texts.notification_quote_approved_subject', [ 'client' => $this->quote->client->present()->name(), 'invoice' => $this->quote->number, ] ); } private function getData() { $settings = $this->quote->client->getMergedSettings(); $data = [ 'title' => $this->getSubject(), 'message' => ctrans( 'texts.notification_quote_approved', [ 'amount' => $this->getAmount(), 'client' => $this->quote->client->present()->name(), 'invoice' => $this->quote->number, ] ), 'url' => $this->quote->invitations->first()->getAdminLink(), 'button' => ctrans('texts.view_quote'), 'signature' => $settings->email_signature, 'logo' => $this->company->present()->logo(), 'settings' => $settings, 'whitelabel' => $this->company->account->isPaid() ? true : false, ]; return $data; } }