Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
siba91 /
core /
app /
Providers /
Delete
Unzip
Name
Size
Permission
Date
Action
AppServiceProvider.php
2.46
KB
-rw-r--r--
2023-11-03 02:38
AuthServiceProvider.php
613
B
-rw-r--r--
2023-11-03 02:38
BroadcastServiceProvider.php
380
B
-rw-r--r--
2023-11-03 02:38
EventServiceProvider.php
923
B
-rw-r--r--
2023-11-03 02:38
RouteServiceProvider.php
2.2
KB
-rw-r--r--
2023-11-03 02:38
Save
Rename
<?php namespace App\Providers; use Illuminate\Auth\Events\Registered; use Illuminate\Auth\Listeners\SendEmailVerificationNotification; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Illuminate\Support\Facades\Event; class EventServiceProvider extends ServiceProvider { /** * The event listener mappings for the application. * * @var array<class-string, array<int, class-string>> */ protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class, ], ]; /** * Register any events for your application. * * @return void */ public function boot() { // } /** * Determine if events and listeners should be automatically discovered. * * @return bool */ public function shouldDiscoverEvents() { return false; } }