Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
app /
Notifications /
Auth /
Delete
Unzip
Name
Size
Permission
Date
Action
ResetPasswordNotification.php
1.57
KB
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
<?php namespace App\Notifications\Auth; use Illuminate\Bus\Queueable; use Illuminate\Support\Facades\Lang; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Auth\Notifications\ResetPassword; use Illuminate\Notifications\Messages\MailMessage; class ResetPasswordNotification extends ResetPassword { use Queueable; protected $url; /** * Create a notification instance. * * @param string $token * @return void */ public function __construct($token) { $this->token = $token; $this->url = request()->get('redirect_url'); } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { if (static::$toMailCallback) { return call_user_func(static::$toMailCallback, $notifiable, $this->token); } return (new MailMessage) ->subject(Lang::get('Reset Password Notification')) ->line(Lang::get('You are receiving this email because we received a password reset request for your account.')) ->action(Lang::get('Reset Password'), url("{$this->url}?token={$this->token}&email={$notifiable->getEmailForPasswordReset()}")) ->line(Lang::get('This password reset link will expire in :count minutes.', ['count' => config('auth.passwords.'.config('auth.defaults.passwords').'.expire')])) ->line(Lang::get('If you did not request a password reset, no further action is required.')); } }