⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.138
Server IP:
186.226.58.36
Server:
Linux da02.sh15.net 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Server Software:
Apache/2
PHP Version:
8.1.32
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
redesystem
/
public_html
/
sys
/
app
/
Providers
/
View File Name :
AuthServiceProvider.php
<?php namespace App\Providers; use Illuminate\Auth\Notifications\ResetPassword; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; use Illuminate\Notifications\Messages\MailMessage; use Lang; class AuthServiceProvider extends ServiceProvider { /** * The policy mappings for the application. * * @var array */ protected $policies = [ // 'App\Models\Model' => 'App\Policies\ModelPolicy', ]; /** * Register any authentication / authorization services. */ public function boot(): void { ResetPassword::toMailUsing(function ($notifiable, $token) { return (new MailMessage) ->subject(__('auth.reset_password.reset_password_notification')) ->line(__('auth.reset_password.reset_password_msg')) ->action(__('auth.reset_password.reset_pwd_btn'), url(config('app.url').route('password.reset', $token, false))) ->line(Lang::get(__('auth.reset_password.reset_password_msg3'), ['count' => config('auth.passwords.'.config('auth.defaults.passwords').'.expire')])) ->line(__('auth.reset_password.reset_password_msg2')); }); } }