migrate to gtea from bistbucket
This commit is contained in:
73
app/Http/Controllers/Api/AcnooBrandController.php
Normal file
73
app/Http/Controllers/Api/AcnooBrandController.php
Normal file
@@ -0,0 +1,73 @@
|
||||
<?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.'),
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user