Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/hrms.ncriptech.com/app/Repositories/Settings/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php namespace App\Repositories\Settings; use function route; use function datatables; use function actionButton; use Illuminate\Support\Str; use App\Models\Frontend\Menu; use App\Models\Frontend\Service; use function start_end_datetime; use Illuminate\Support\Facades\Log; use App\Models\Traits\RelationCheck; use Brian2694\Toastr\Facades\Toastr; use App\Helpers\CoreApp\Traits\AuthorInfoTrait; use App\Helpers\CoreApp\Traits\ApiReturnFormatTrait; use App\Models\coreApp\Relationship\RelationshipTrait; class ServiceRepository { use AuthorInfoTrait, RelationshipTrait, RelationCheck, ApiReturnFormatTrait; protected $service; public function __construct(Service $service) { $this->service = $service; } function fields() { return [ _trans('common.ID'), _trans('common.Title'), _trans('common.Status'), _trans('common.Action') ]; } function find($id) { return $this->service->find($id); } function all() { return $this->service->orderBy('position', 'ASC')->get(); } function table($request) { // Log::info($request->all()); $data = $this->service->query()->with('status'); $where = array(); if ($request->search) { $where[] = ['title', 'like', '%' . $request->search . '%']; } if ($request->from && $request->to) { $data = $data->whereBetween('created_at', start_end_datetime($request->from, $request->to)); } $data = $data ->where($where) ->orderBy('id', 'desc') ->paginate($request->limit ?? 2); return [ 'data' => $data->map(function ($data) { $action_button = ''; if (hasPermission('service_edit')) { $action_button .= '<a href="' . route('service.edit', $data->id) . '" class="dropdown-item"> ' . _trans('common.Edit') . '</a>'; } if (hasPermission('service_delete')) { $action_button .= actionButton(_trans('common.Delete'), '__deleteAlert(`' . route('service.delete', $data->id) . '`)', 'delete'); } $button = ' <div class="dropdown dropdown-action"> <button type="button" class="btn-dropdown" data-bs-toggle="dropdown" aria-expanded="false"> <i class="fa-solid fa-ellipsis"></i> </button> <ul class="dropdown-menu dropdown-menu-end"> ' . $action_button . ' </ul> </div>'; return [ 'id' => $data->id, 'title' => $data->title, 'status' => '<small class="badge badge-' . @$data->status->class . '">' . @$data->status->name . '</small>', 'action' => $button ]; }), 'pagination' => [ 'total' => $data->total(), 'count' => $data->count(), 'per_page' => $data->perPage(), 'current_page' => $data->currentPage(), 'total_pages' => $data->lastPage(), 'pagination_html' => $data->links('backend.pagination.custom')->toHtml(), ], ]; } function store($request) { try { $service = new $this->service; $service->title = $request->title; $service->slug = Str::slug($request->title); $service->description = $request->content; $service->status_id = $request->status; $service->user_id = auth()->user()->id; $service->save(); return $this->responseWithSuccess(_trans('message.Service created successfully.'), $service); } catch (\Throwable $th) { return $this->responseWithError($th->getMessage(), [], 400); } } function update($request, $id) { try { $service = $this->service->where(['id' => $id])->first(); if (!$service) { return $this->responseWithError(_trans('message.Service not found'), 'id', 404); } $service->title = $request->title; $service->slug = Str::slug($request->title); $service->description = $request->content; $service->status_id = $request->status; $service->save(); return $this->responseWithSuccess(_trans('message.Service Updated successfully.'), $service); } catch (\Throwable $th) { return $this->responseWithError($th->getMessage(), [], 400); } } // statusUpdate public function statusUpdate($request) { try { // Log::info($request->all()); if (@$request->action == 'active') { $menu = $this->service->whereIn('id', $request->ids)->update(['status_id' => 1]); return $this->responseWithSuccess(_trans('message.Service activate successfully.'), $menu); } if (@$request->action == 'inactive') { $menu = $this->service->whereIn('id', $request->ids)->update(['status_id' => 4]); return $this->responseWithSuccess(_trans('message.Service inactivate successfully.'), $menu); } return $this->responseWithError(_trans('message.Service failed'), [], 400); } catch (\Throwable $th) { return $this->responseWithError($th->getMessage(), [], 400); } } public function delete($id) { $menu = $this->service->where(['id' => $id])->first(); if (!$menu) { return $this->responseWithError(_trans('message.Service not found'), 'id', 404); } try { $menu->delete(); return $this->responseWithSuccess(_trans('message.Service Delete successfully.'), $menu); } catch (\Throwable $th) { return $this->responseWithError($th->getMessage(), [], 400); } } public function destroyAll($request) { try { if (@$request->ids) { $menu = $this->service->whereIn('id', $request->ids)->delete(); return $this->responseWithSuccess(_trans('message.Service delete successfully.'), $menu); } else { return $this->responseWithError(_trans('message.Service not found'), [], 400); } } catch (\Throwable $th) { return $this->responseWithError($th->getMessage(), [], 400); } } }