item = $item; $this->waitingUser = $waitingUser; $this->userWithItem = $userWithItem; } /** * Build the message. * * @return $this */ public function build() { return $this->subject( Lang::get( ':waitinguser wants to use :itemname', [ 'waitinguser' => $this->waitingUser, 'itemname' => $this->item->name ] ) )->markdown('emails.userWaiting'); } }