74 lines
1.8 KiB
PHP
74 lines
1.8 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers\Api;
|
||
|
|
|
||
|
|
use App\Http\Controllers\Controller;
|
||
|
|
use App\Models\Brand;
|
||
|
|
use Illuminate\Http\Request;
|
||
|
|
|
||
|
|
class AcnooBrandController extends Controller
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Display a listing of the resource.
|
||
|
|
*/
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
$data = Brand::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)
|
||
|
|
{
|
||
|
|
$request->validate([
|
||
|
|
'brandName' => 'required|unique:brands,brandName,NULL,id,business_id,' . auth()->user()->business_id,
|
||
|
|
]);
|
||
|
|
|
||
|
|
$data = Brand::create($request->all() + [
|
||
|
|
'business_id' => auth()->user()->business_id
|
||
|
|
]);
|
||
|
|
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('Data saved successfully.'),
|
||
|
|
'data' => $data,
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Update the specified resource in storage.
|
||
|
|
*/
|
||
|
|
public function update(Request $request, Brand $brand)
|
||
|
|
{
|
||
|
|
$request->validate([
|
||
|
|
'brandName' => [
|
||
|
|
'required',
|
||
|
|
'unique:brands,brandName,' . $brand->id . ',id,business_id,' . auth()->user()->business_id,
|
||
|
|
],
|
||
|
|
]);
|
||
|
|
|
||
|
|
$brand = $brand->update($request->all());
|
||
|
|
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('Data saved successfully.'),
|
||
|
|
'data' => $brand,
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Remove the specified resource from storage.
|
||
|
|
*/
|
||
|
|
public function destroy(Brand $brand)
|
||
|
|
{
|
||
|
|
$brand->delete();
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('Data deleted successfully.'),
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
}
|