telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log15231821 KBJuly 18 2025 16:55:510644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
moduleUtil = $moduleUtil; } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $category_type = request()->get('type'); if ($category_type == 'product' && ! auth()->user()->can('category.view') && ! auth()->user()->can('category.create')) { abort(403, 'Unauthorized action.'); } if (request()->ajax()) { $can_edit = true; if ($category_type == 'product' && ! auth()->user()->can('category.update')) { $can_edit = false; } $can_delete = true; if ($category_type == 'product' && ! auth()->user()->can('category.delete')) { $can_delete = false; } $business_id = request()->session()->get('user.business_id'); $category = Category::where('business_id', $business_id) ->where('category_type', $category_type) ->select(['name', 'short_code', 'description', 'id', 'parent_id']); return Datatables::of($category) ->addColumn( 'action', function ($row) use ($can_edit, $can_delete, $category_type) { $html = ''; if ($can_edit) { $html .= ''; } if ($can_delete) { $html .= ' '; } return $html; } ) ->editColumn('name', function ($row) { if ($row->parent_id != 0) { return '--'.$row->name; } else { return $row->name; } }) ->removeColumn('id') ->removeColumn('parent_id') ->rawColumns(['action']) ->make(true); } $module_category_data = $this->moduleUtil->getTaxonomyData($category_type); return view('taxonomy.index')->with(compact('module_category_data', 'module_category_data')); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { $category_type = request()->get('type'); if ($category_type == 'product' && ! auth()->user()->can('category.create')) { abort(403, 'Unauthorized action.'); } $business_id = request()->session()->get('user.business_id'); $module_category_data = $this->moduleUtil->getTaxonomyData($category_type); $categories = Category::where('business_id', $business_id) ->where('parent_id', 0) ->where('category_type', $category_type) ->select(['name', 'short_code', 'id']) ->get(); $parent_categories = []; if (! empty($categories)) { foreach ($categories as $category) { $parent_categories[$category->id] = $category->name; } } return view('taxonomy.create') ->with(compact('parent_categories', 'module_category_data', 'category_type')); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { $category_type = request()->input('category_type'); if ($category_type == 'product' && ! auth()->user()->can('category.create')) { abort(403, 'Unauthorized action.'); } try { $input = $request->only(['name', 'short_code', 'category_type', 'description']); if (! empty($request->input('add_as_sub_cat')) && $request->input('add_as_sub_cat') == 1 && ! empty($request->input('parent_id'))) { $input['parent_id'] = $request->input('parent_id'); } else { $input['parent_id'] = 0; } $input['business_id'] = $request->session()->get('user.business_id'); $input['created_by'] = $request->session()->get('user.id'); $category = Category::create($input); $output = ['success' => true, 'data' => $category, 'msg' => __('category.added_success'), ]; } catch (\Exception $e) { \Log::emergency('File:'.$e->getFile().'Line:'.$e->getLine().'Message:'.$e->getMessage()); $output = ['success' => false, 'msg' => __('messages.something_went_wrong'), ]; } return $output; } /** * Display the specified resource. * * @param \App\Category $category * @return \Illuminate\Http\Response */ public function show(Category $category) { // } /** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit($id) { $category_type = request()->get('type'); if ($category_type == 'product' && ! auth()->user()->can('category.update')) { abort(403, 'Unauthorized action.'); } if (request()->ajax()) { $business_id = request()->session()->get('user.business_id'); $category = Category::where('business_id', $business_id)->find($id); $module_category_data = $this->moduleUtil->getTaxonomyData($category_type); $parent_categories = Category::where('business_id', $business_id) ->where('parent_id', 0) ->where('category_type', $category_type) ->where('id', '!=', $id) ->pluck('name', 'id'); $is_parent = false; if ($category->parent_id == 0) { $is_parent = true; $selected_parent = null; } else { $selected_parent = $category->parent_id; } return view('taxonomy.edit') ->with(compact('category', 'parent_categories', 'is_parent', 'selected_parent', 'module_category_data')); } } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param int $id * @return \Illuminate\Http\Response */ public function update(Request $request, $id) { if (request()->ajax()) { try { $input = $request->only(['name', 'description']); $business_id = $request->session()->get('user.business_id'); $category = Category::where('business_id', $business_id)->findOrFail($id); if ($category->category_type == 'product' && ! auth()->user()->can('category.update')) { abort(403, 'Unauthorized action.'); } $category->name = $input['name']; $category->description = $input['description']; $category->short_code = $request->input('short_code'); if (! empty($request->input('add_as_sub_cat')) && $request->input('add_as_sub_cat') == 1 && ! empty($request->input('parent_id'))) { $category->parent_id = $request->input('parent_id'); } else { $category->parent_id = 0; } $category->save(); $output = ['success' => true, 'msg' => __('category.updated_success'), ]; } catch (\Exception $e) { \Log::emergency('File:'.$e->getFile().'Line:'.$e->getLine().'Message:'.$e->getMessage()); $output = ['success' => false, 'msg' => __('messages.something_went_wrong'), ]; } return $output; } } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { if (request()->ajax()) { try { $business_id = request()->session()->get('user.business_id'); $category = Category::where('business_id', $business_id)->findOrFail($id); if ($category->category_type == 'product' && ! auth()->user()->can('category.delete')) { abort(403, 'Unauthorized action.'); } $category->delete(); $output = ['success' => true, 'msg' => __('category.deleted_success'), ]; } catch (\Exception $e) { \Log::emergency('File:'.$e->getFile().'Line:'.$e->getLine().'Message:'.$e->getMessage()); $output = ['success' => false, 'msg' => __('messages.something_went_wrong'), ]; } return $output; } } public function getCategoriesApi() { try { $api_token = request()->header('API-TOKEN'); $api_settings = $this->moduleUtil->getApiSettings($api_token); $categories = Category::catAndSubCategories($api_settings->business_id); } catch (\Exception $e) { \Log::emergency('File:'.$e->getFile().'Line:'.$e->getLine().'Message:'.$e->getMessage()); return $this->respondWentWrong($e); } return $this->respond($categories); } /** * get taxonomy index page * through ajax * * @return \Illuminate\Http\Response */ public function getTaxonomyIndexPage(Request $request) { if (request()->ajax()) { $category_type = $request->get('category_type'); $module_category_data = $this->moduleUtil->getTaxonomyData($category_type); return view('taxonomy.ajax_index') ->with(compact('module_category_data', 'category_type')); } } }