Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
oishifashion /
ap.tsgbd.com /
app /
Events /
Delete
Unzip
Name
Size
Permission
Date
Action
ContactCreatedOrModified.php
926
B
-rw-r--r--
2025-12-16 01:59
ExpenseCreatedOrModified.php
951
B
-rw-r--r--
2025-12-16 01:59
ProductsCreatedOrModified.php
927
B
-rw-r--r--
2025-12-16 01:59
PurchaseCreatedOrModified.php
998
B
-rw-r--r--
2025-12-16 01:59
SellCreatedOrModified.php
912
B
-rw-r--r--
2025-12-16 01:59
StockAdjustmentCreatedOrModified.php
966
B
-rw-r--r--
2025-12-16 01:59
StockTransferCreatedOrModified.php
924
B
-rw-r--r--
2025-12-16 01:59
TransactionPaymentAdded.php
559
B
-rw-r--r--
2025-12-16 01:59
TransactionPaymentDeleted.php
484
B
-rw-r--r--
2025-12-16 01:59
TransactionPaymentUpdated.php
513
B
-rw-r--r--
2025-12-16 01:59
UserCreatedOrModified.php
911
B
-rw-r--r--
2025-12-16 01:59
Save
Rename
<?php namespace App\Events; use Illuminate\Broadcasting\Channel; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class UserCreatedOrModified { use Dispatchable, InteractsWithSockets, SerializesModels; public $user; public $action; /** * Create a new event instance. * * @return void */ public function __construct($user, $action) { $this->user = $user; $this->action = $action; } /** * Get the channels the event should broadcast on. * * @return \Illuminate\Broadcasting\Channel|array */ public function broadcastOn() { return new PrivateChannel('channel-name'); } }