registrar usuario de tipo comprador, comente algunas cosas del codigo

This commit is contained in:
Jose Sanchez
2023-08-15 10:37:30 -04:00
parent 223db091b0
commit 31b2e896ad
38 changed files with 3718 additions and 649 deletions

View File

@@ -15,33 +15,33 @@ class EmailVerificationNotification extends Notification
{
use Queueable;
public $verificationCode;
// public $verificationCode;
public function __construct($verificationCode)
{
$this->verificationCode = $verificationCode;
}
// public function __construct($verificationCode)
// {
// $this->verificationCode = $verificationCode;
// }
public function via($notifiable)
{
return ['mail'];
}
// public function via($notifiable)
// {
// return ['mail'];
// }
public function toMail($notifiable)
{
$verificationCode = $this->verificationCode;
// public function toMail($notifiable)
// {
// $verificationCode = $this->verificationCode;
return (new MailMessage)
->subject(translate('Email Verification - ') . env('APP_NAME'))
->line('Your verification code is: ' . $verificationCode); // Mostrar el código de verificación en el correo
}
// return (new MailMessage)
// ->subject(translate('Email Verification - ') . env('APP_NAME'))
// ->line('Your verification code is: ' . $verificationCode); // Mostrar el código de verificación en el correo
// }
public function toArray($notifiable)
{
return [
//
];
}
// public function toArray($notifiable)
// {
// return [
// //
// ];
// }
}