$this->reservation->username, 'reservationDesc' => Item::where('id', $this->reservation->item_id)->pluck('desc')->first(), 'reservationEmail' => $this->reservation->email, 'reservationReturnDate' => $this->reservation->return_date->toDateString(), ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }