invoice->address; $delivery_address = $order->delivery_address; $this->prenom = $order->customer->first_name; $this->nom = $order->customer->last_name; $this->facturation_adresse = $facturation_address->address; $this->facturation_cp = $facturation_address->zipcode; $this->facturation_ville = $facturation_address->city; $this->livraison_adresse = $delivery_address->address; $this->livraison_cp = $delivery_address->zipcode; $this->livraison_ville = $delivery_address->city; $this->societe = $order->customer->company; $this->email = $order->customer->email; $this->numero_commande = $order->ref; $this->date_commande = $order->created_at; } }