Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/vapecompany/demo.vapecompany.com.bd/app/Http/Controllers/Backend/ |
Upload File : |
<?php namespace App\Http\Controllers; use App\Models\Brand; use Illuminate\Http\Request; class BrandController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function __construct() { $this->middleware('auth'); } public function index() { if(!auth()->user()->canEvent('all_brand')) { return redirect('/'); } $brands = Brand::get(); return view('brand.list',['brands'=>$brands]); } function get_all(Request $request){ $draw = $request->get('draw'); $start = $request->get("start"); $rowperpage = $request->get("length"); // Rows display per page $columnIndex_arr = $request->get('order'); $columnName_arr = $request->get('columns'); $order_arr = $request->get('order'); $search_arr = $request->get('search'); $columnIndex = $columnIndex_arr[0]['column']; // Column index $columnName = $columnName_arr[$columnIndex]['data']; // Column name $columnSortOrder = $order_arr[0]['dir']; // asc or desc $searchValue = $search_arr['value']; // Search value $totalRecords = Brand::count(); $chalans =Brand::orderBy($columnName,$columnSortOrder); if($columnName_arr[0]['search']['value'] != null){ $chalans=$chalans->Where('brand_id', $columnName_arr[0]['search']['value']); } if($columnName_arr[1]['search']['value'] != null){ $chalans=$chalans->Where('brand_name', 'Like', $columnName_arr[1]['search']['value'] . '%'); } if($columnName_arr[2]['search']['value'] != null){ $chalans=$chalans->Where('status',$columnName_arr[2]['search']['value']); } if($rowperpage < 0) { $rowperpage = 8999999999999999999; } $chalans=$chalans->skip($start) ->take($rowperpage) ->get(); $data_arr = array(); foreach($chalans as $chalan){ $action ='<div role="group" aria-label="Basic example" class="btn-group btn-group-sm">'; if(auth()->user()->canEvent('edit_brand')) { $action .='<a href="'.url('edit_brand/'.$chalan->brand_id).'" class="mr-2"> <i class="fa fa-edit text-warning"></i> </a> '; } if(auth()->user()->canEvent('b_documment_list')) { $action .='<a href="'.url('document/brand/'.$chalan->brand_id).'" class="mr-2"> Documents </a> '; } $action .='</div>'; $data_arr[] = array( "brand_id" => $chalan->brand_id, "brand_name" => $chalan->brand_name, "status" => $chalan->status == 1 ? 'Active' : 'In Active', "Action" => $action, ); } $response = array( "draw" => intval($draw), "recordsTotal" => $totalRecords, "recordsFiltered" => $totalRecords, "data" => $data_arr ); echo json_encode($response); exit; } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { if(!auth()->user()->canEvent('new_brand')) { return redirect('/'); } return view('brand.create'); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { $validator = \Validator::make($request->all(), [ 'brand_name' => 'required|unique:brands|max:150', ]); if ($validator->fails()) { return response()->json(['errors'=>$validator->errors()->all()]); }else{ //return response()->json(['re'=> auth()->user()->user_id]); $brand = new Brand; $brand->brand_name = $request->brand_name; $brand->status = $request->status ? $request->status : 0; $brand->created_by = auth()->user()->user_id; $brand->save(); } return response()->json(['errors'=>'0','success'=>$request->brand_name.' is successfully added']); } /** * Display the specified resource. * * @param \App\Models\Brand $brand * @return \Illuminate\Http\Response */ public function show(Brand $brand) { // } /** * Show the form for editing the specified resource. * * @param \App\Models\Brand $brand * @return \Illuminate\Http\Response */ public function edit($id) { if(!auth()->user()->canEvent('edit_brand')) { return redirect('/'); } $brand=Brand::where('brand_id',$id)->first(); return view('brand.edit',['brand'=>$brand]); } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\Brand $brand * @return \Illuminate\Http\Response */ public function update(Request $request, Brand $brand) { $id=$request->brand_id; $validator = \Validator::make($request->all(), [ 'brand_name' => 'required|max:150|unique:brands,brand_name,'.$id.',brand_id', ]); if ($validator->fails()) { return response()->json(['errors'=>$validator->errors()->all()]); }else{ //return response()->json(['re'=> auth()->user()->user_id]); $brand = Brand::find($request->brand_id); $brand->brand_name = $request->brand_name; $brand->status = $request->status ? $request->status : 0; $brand->updated_by = auth()->user()->user_id; $brand->save(); } return response()->json(['errors'=>'0','success'=>$request->brand_name.'Record is successfully Updated']); } /** * Remove the specified resource from storage. * * @param \App\Models\Brand $brand * @return \Illuminate\Http\Response */ public function destroy(Brand $brand) { // } }