Server IP : 66.29.132.124 / Your IP : 18.219.255.63 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Location/Admin/ |
Upload File : |
<?php namespace Modules\Location\Admin; use Illuminate\Http\Request; use Modules\AdminController; use Modules\Location\Models\LocationCategory; use Modules\Location\Models\LocationCategoryTranslation; class CategoryController extends AdminController { protected $locationCategoryClass; public function __construct() { parent::__construct(); $this->setActiveMenu(route('location.admin.index')); $this->locationCategoryClass = LocationCategory::class; } public function index(Request $request) { $this->checkPermission('location_manage_others'); $listCategory = $this->locationCategoryClass::query(); if (!empty($search = $request->query('s'))) { $listCategory->where('name', 'LIKE', '%' . $search . '%'); } $listCategory->orderBy('created_at', 'desc'); $data = [ 'rows' => $listCategory->get()->toTree(), 'row' => new $this->locationCategoryClass(), 'translation' => new LocationCategoryTranslation(), 'breadcrumbs' => [ [ 'name' => __('Location'), 'url' => route('location.admin.index') ], [ 'name' => __('Category'), 'class' => 'active' ], ] ]; return view('Location::admin.category.index', $data); } public function edit(Request $request, $id) { $this->checkPermission('location_manage_others'); $row = $this->locationCategoryClass::find($id); if (empty($row)) { return redirect(route('location.admin.category.index')); } $translation = $row->translateOrOrigin($request->query('lang')); $data = [ 'translation' => $translation, 'enable_multi_lang'=>true, 'row' => $row, 'parents' => $this->locationCategoryClass::get()->toTree(), 'breadcrumbs' => [ [ 'name' => __('Location'), 'url' => route('location.admin.index') ], [ 'name' => __('Category'), 'class' => 'active' ], ] ]; return view('Location::admin.category.detail', $data); } public function store(Request $request , $id) { $this->checkPermission('location_manage_others'); $this->validate($request, [ 'name' => 'required' ]); if($id>0){ $row = $this->locationCategoryClass::find($id); if (empty($row)) { return redirect(route('location.admin.category.index')); } }else{ $row = new $this->locationCategoryClass(); $row->status = "publish"; } $row->fill($request->input()); $res = $row->saveOriginOrTranslation($request->input('lang'),true); if ($res) { return back()->with('success', __('Category saved') ); } } public function bulkEdit(Request $request) { $this->checkPermission('location_manage_others'); $ids = $request->input('ids'); $action = $request->input('action'); if (empty($ids) or !is_array($ids)) { return redirect()->back()->with('error', __('Select at least 1 item!')); } if (empty($action)) { return redirect()->back()->with('error', __('Select an Action!')); } if ($action == "delete") { foreach ($ids as $id) { $query = $this->locationCategoryClass::where("id", $id)->first(); if(!empty($query)){ //Sync child category $list_childs = $this->locationCategoryClass::where("parent_id", $id)->get(); if(!empty($list_childs)){ foreach ($list_childs as $child){ $child->parent_id = null; $child->save(); } } //Del parent category $query->delete(); } } } else { foreach ($ids as $id) { $query = $this->locationCategoryClass::where("id", $id); $query->update(['status' => $action]); } } return redirect()->back()->with('success', __('Updated success!')); } public function getForSelect2(Request $request) { $pre_selected = $request->query('pre_selected'); $selected = $request->query('selected'); if($pre_selected && $selected){ $item = $this->locationCategoryClass::find($selected); if(empty($item)){ return response()->json([ 'text'=>'' ]); }else{ return response()->json([ 'text'=>$item->name ]); } } $q = $request->query('q'); $query = $this->locationCategoryClass::select('id', 'name as text')->where("status","publish"); if ($q) { $query->where('name', 'like', '%' . $q . '%'); } $res = $query->orderBy('id', 'desc')->limit(20)->get(); return response()->json([ 'results' => $res ]); } }