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 | : 172.70.231.98
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 : UserService.php
<?php /** * Created by crm_entity command. * @author : Muhammad Saeed * @todo : Service todo * @since : $2021Aug24 * @description : Service description */ namespace App\Services\Front; use App\Models\User; use App\Services\UserService as ParentService; use App\Repositories\UserRepository; class UserService extends ParentService { /** * @var UserRepository */ protected $repository; /** * UserRepository constructor. * * @param UserRepository $repository */ public function __construct(UserRepository $repository) { parent::__construct($repository, 'Front'); } /** * UserRepository constructor. * * @todo Function todo * @description Function description * @since $2021Aug24 * @param UserRepository $repository */ public function index($request){ $this->repository->setPresenter("App\\Presenters\\Front\\User\\ListPresenter"); $this->repository->pushCriteria(app('Prettus\Repository\Criteria\RequestCriteria')); if ($request->has('paginate') && $request->paginate) { return $this->repository->paginate(); } return $this->repository->orderBy('first_name','asc')->all(); } public function bdUser(){ return User::with(['deals'])->where('status','active')->get(); } }
Close