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.'), ]); } }