HOME


Mini Shell 1.0
La Pieza.DO | Todo lo que buscas!

Bienvenido de nuevo!

Acceso Cuenta Delivery
DIR: /var/www/devs.lapieza.net/app/Notifications/
Upload File :
Current File : /var/www/devs.lapieza.net/app/Notifications/EmailVerificationNotification.php
<?php



namespace App\Notifications;



use Illuminate\Bus\Queueable;

use Illuminate\Notifications\Notification;

use Illuminate\Notifications\Messages\MailMessage;



class EmailVerificationNotification extends Notification

{

    use Queueable;





    public function __construct()

    {

        

    }



    public function via($notifiable)

    {

        return ['mail'];

    }



    public function toMail($notifiable)

    {

        $notifiable->verification_code = encrypt($notifiable->id);

        $notifiable->save();



        $array['view'] = 'emails.verification';

        $array['subject'] = translate('Email Verification');

        $array['content'] = translate('Please click the button below to verify your email address.');

        $array['link'] = route('email.verification.confirmation', $notifiable->verification_code);



        return (new MailMessage)

            ->view('emails.verification', ['array' => $array])

            ->subject(translate('Email Verification - ') . env('APP_NAME'));

    }



    public function toArray($notifiable)

    {

    }

}