company->display_name ?? $this->company->name; return new Envelope( subject: "Comanda #{$this->order->number} primită — {$brand}", ); } public function content(): Content { return new Content( view: 'emails.shop.order-confirmation', with: [ 'order' => $this->order, 'company' => $this->company, 'items' => $this->order->items()->get(), 'trackingUrl' => $this->order->trackingUrl(), 'currency' => $this->company->settings['currency'] ?? 'MDL', ], ); } }