* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com) */ class NewCustomerNotification extends Mailable { use Queueable, SerializesModels; /** * The customer instance. * * @var customer */ public $customer; /** * The password instance. * * @var password */ public $password; /** * Create a new message instance. * * @return void */ public function __construct($customer, $password) { $this->customer = $customer; $this->password = $password; } /** * Build the message. * * @return $this */ public function build() { return $this->to($this->customer->email) ->subject(trans('shop::app.mail.customer.new.subject')) ->view('shop::emails.customer.new-customer')->with(['customer' => $this->customer, 'password' => $this->password]); } }