title=$title; $this->booking=$booking; $this->payment=$payment; } /** * Build the message. * * @return $this */ public function build() { // tự code header vào footer và tự css return $this->markdown('emails.bookings.detail_all') ->subject($this->title) ->with([ 'booking' => $this->booking, 'payment' => $this->payment, ]); } }