PATH:
home
/
rwabteecom
/
project_11
/
app
/
Notifications
/
Admin
/
Editing: ResetPasswordNotification.php
<?php namespace App\Notifications\Admin; use Illuminate\Auth\Notifications\ResetPassword; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; class ResetPasswordNotification extends ResetPassword { protected function resetUrl($notifiable): string { return url(route('admin.password.reset', [ 'token' => $this->token, 'email' => $notifiable->getEmailForPasswordReset(), ], false)); } }
SAVE
CANCEL