verificationUrl($notifiable); return (new MailMessage) ->subject('Verifikasi Email - CV Lumintu Energi Persada') ->view('auth.template-email', ['url' => $verificationUrl]); } protected function verificationUrl($notifiable) { return URL::temporarySignedRoute( 'verification.verify', Carbon::now()->addMinutes(Config::get('auth.verification.expire', 60)), [ 'id' => $notifiable->getKey(), 'hash' => sha1($notifiable->getEmailForVerification()), ] ); } }