user = $user; $this->santID = $santID; $this->chaturmasID = $chaturmasID; $this->description = $description; // $this->$sant = $sant; $this->subject = trans('email.email_subject_label.wrong_chaturmas'); } /** * @return WrongChaturmasEmail */ public function build() { $sant = Sant::where('id', $this->santID)->first(); return $this->view('frontend.mail.wrong-chaturmas') ->with([ 'user' => $this->user, 'santID' => $this->santID, 'chaturmasID' => $this->chaturmasID, 'description' => $this->description, 'sant' => $sant ]); } }