entity = $invitation->{$entity_name}; $this->contact = $invitation->contact; $this->company = $invitation->company; $this->settings = $this->entity->client->getMergedSettings(); $this->is_system = $is_system; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return $this->is_system ? ['slack'] : ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $data = $this->buildDataArray(); $subject = $this->buildSubject(); return (new MailMessage) ->subject($subject) ->markdown('email.admin.generic', $data); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } public function toSlack($notifiable) { $logo = $this->company->present()->logo(); $amount = Number::formatMoney($this->entity->amount, $this->entity->client); return (new SlackMessage) ->success() ->from(ctrans('texts.notification_bot')) ->image($logo) ->content(ctrans("texts.notification_{$this->entity_name}_viewed", [ 'amount' => $amount, 'client' => $this->contact->present()->name(), $this->entity_name => $this->entity->number ])); } private function buildDataArray() { $amount = Number::formatMoney($this->entity->amount, $this->entity->client); $subject = ctrans("texts.notification_{$this->entity_name}_viewed_subject", [ 'client' => $this->contact->present()->name(), $this->entity_name => $this->entity->number, ]); $data = [ 'title' => $subject, 'message' => ctrans("texts.notification_{$this->entity_name}_viewed", [ 'amount' => $amount, 'client' => $this->contact->present()->name(), $this->entity_name => $this->entity->number, ]), 'url' => config('ninja.site_url') . "/{$this->entity_name}s/" . $this->entity->hashed_id, 'button' => ctrans("texts.view_{$this->entity_name}"), 'signature' => $this->settings->email_signature, 'logo' => $this->company->present()->logo(), ]; } }