contact->subject ?? 'Pesan Kontak'), ); } /** * Get the message content definition. */ public function content(): Content { $settings = app(GeneralSettings::class); $logoPath = $settings->site_logo ? storage_path('app/public/'.$settings->site_logo) : public_path('assets/img/logo/icon-with-text.png'); return new Content( view: 'emails.contact-reply', with: [ 'name' => $this->contact->name, 'replyMessage' => $this->replyMessage, 'site_name' => $settings->site_name, 'logoPath' => $logoPath, ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }