validated(); if ($validate) { try { // Save to database Debiture::create($validate); return redirect() ->route('debitur.index') ->with('success', 'Debitur created successfully'); } catch (Exception $e) { return redirect() ->route('debitur.create') ->with('error', 'Failed to create debitur'); } } } public function create() { $branches = Branch::all(); $provinces = Province::all(); return view('lpj::debitur.create', compact('branches', 'provinces')); } public function edit($id) { $debitur = Debiture::find($id); $branches = Branch::all(); $provinces = Province::all(); $cities = City::where('province_code', $debitur->province_code)->get(); $districts = District::where('city_code', $debitur->city_code)->get(); $villages = Village::where('district_code', $debitur->district_code)->get(); return view('lpj::debitur.create', compact('debitur', 'branches', 'provinces', 'cities', 'districts', 'villages')); } public function update(DebitureRequest $request, $id) { $validate = $request->validated(); if ($validate) { try { // Update in database $debitur = Debiture::find($id); $debitur->update($validate); return redirect() ->route('debitur.index') ->with('success', 'Debitur updated successfully'); } catch (Exception $e) { return redirect() ->route('debitur.edit', $id) ->with('error', 'Failed to update debitur'); } } } public function destroy($id) { try { // Delete from database $debitur = Debiture::find($id); $debitur->delete(); echo json_encode(['success' => true, 'message' => 'Debitur deleted successfully']); } catch (Exception $e) { echo json_encode(['success' => false, 'message' => 'Failed to delete debitur']); } } public function dataForDatatables(Request $request) { if (is_null($this->user) || !$this->user->can('debitur.view')) { //abort(403, 'Sorry! You are not allowed to view users.'); } // Retrieve data from the database $query = Debiture::query(); // Apply search filter if provided if ($request->has('search') && !empty($request->get('search'))) { $search = $request->get('search'); $query->where(function ($q) use ($search) { $q->where('cif', 'LIKE', "%$search%"); $q->orWhere('name', 'LIKE', "%$search%"); $q->orWhereRelation('branch', 'name', 'LIKE', "%$search%"); $q->orWhere('address', 'LIKE', "%$search%"); $q->orWhere('npwp', 'LIKE', "%$search%"); $q->orWhere('nomor_id', 'LIKE', "%$search%"); $q->orWhere('email', 'LIKE', "%$search%"); $q->orWhere('phone', 'LIKE', "%$search%"); $q->orWhere('nomor_rekening', 'LIKE', "%$search%"); }); } // Apply sorting if provided if ($request->has('sortOrder') && !empty($request->get('sortOrder'))) { $order = $request->get('sortOrder'); $column = $request->get('sortField'); $query->orderBy($column, $order); } // Get the total count of records $totalRecords = $query->count(); // Apply pagination if provided if ($request->has('page') && $request->has('size')) { $page = $request->get('page'); $size = $request->get('size'); $offset = ($page - 1) * $size; // Calculate the offset $query->skip($offset)->take($size); } // Get the filtered count of records $filteredRecords = $query->count(); // Get the data for the current page $data = $query->with('branch')->get(); // Calculate the page count $pageCount = ceil($totalRecords / $request->get('size')); // Calculate the current page number $currentPage = 0 + 1; // Return the response data as a JSON object return response()->json([ 'draw' => $request->get('draw'), 'recordsTotal' => $totalRecords, 'recordsFiltered' => $filteredRecords, 'pageCount' => $pageCount, 'page' => $currentPage, 'totalCount' => $totalRecords, 'data' => $data, ]); } public function export() { return Excel::download(new DebitureExport, 'debitur.xlsx'); } }