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 /
.trash /
core.1 /
app /
Listeners /
Delete
Unzip
Name
Size
Permission
Date
Action
SendAdminNotification.php
638
B
-rw-r--r--
2023-12-27 04:45
Save
Rename
<?php namespace App\Listeners; use App\Models\Admin; use App\Notifications\NewUserNotification; use App\Notifications\RegistrationNotification; use Illuminate\Support\Facades\Notification; class SendAdminNotification { /** * Create the event listener. * * @return void */ public function __construct() { // } /** * Handle the event. * * @param object $event * @return void */ public function handle($event) { $admin = Admin::where('username','admin')->get(); Notification::send($admin, new NewUserNotification($event->user)); } }