芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/portpulselogistics.com/app/Notifications/EmailVerificationNotification.php
content("Your Notification here!"); } public function toMail($notifiable) { $notifiable->verification_code = encrypt($notifiable->id); $notifiable->save(); $array['view'] = 'emails.verification'; $array['subject'] = translate('Email Verification'); $array['content'] = '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) { return [ // ]; } }