%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Http/Controllers/ |
Upload File : |
<?php
namespace App\Http\Controllers;
use App\Helper\Reply;
use App\Http\Requests\Product\StoreProductSubCategory;
use App\Models\ProductCategory;
use App\Models\ProductSubCategory;
use Illuminate\Http\Request;
class ProductSubCategoryController extends AccountBaseController
{
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create(Request $request)
{
$this->categoryID = $request->catID;
$this->subcategories = ProductSubCategory::all();
$this->categories = ProductCategory::all();
return view('products.sub-category.create', $this->data);
}
/**
* @param StoreProductSubCategory $request
* @return array
* @throws \Froiden\RestAPI\Exceptions\RelatedResourceNotFoundException
*/
public function store(StoreProductSubCategory $request)
{
$category = new ProductSubCategory();
$category->category_id = $request->category_id;
$category->category_name = $request->category_name;
$category->save();
$categoryData = ProductCategory::get();
$subCategoryData = ProductSubCategory::get();
$category = '';
$subCategory = '';
$categoryID = $request->categoryID;
foreach ($categoryData as $data) {
$selected = ($categoryID == $data->id) ? 'selected' : '';
$category .= '<option value='.$data->id.' '.$selected.'>'. $data->category_name .' </option>';
}
if ($categoryID) {
foreach ($subCategoryData as $item) {
$selected = ($categoryID == $item->category_id) ? 'selected' : '';
$subCategory .= '<option value='.$item->id.' '. $selected .'>'. $item->category_name .' </option>';
}
}
return Reply::successWithData(__('messages.recordSaved'), ['data' => $category, 'subCategoryData' => $subCategory]);
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
$category = ProductSubCategory::findOrFail($id);
$category->category_id = $request->category_id ? $request->category_id : $category->category_id;
$category->category_name = $request->category_name ? strip_tags($request->category_name) : $category->category_name;
$category->save();
$subCategoryOptions = $this->categoryDropdown($category->category_id);
$categoryOptions = $this->subCategoryDropdown($category->id);
return Reply::successWithData(__('messages.updateSuccess'), ['sub_categories' => $subCategoryOptions, 'categories' => $categoryOptions]);
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
ProductSubCategory::destroy($id);
return Reply::success(__('messages.deleteSuccess'));
}
public function categoryDropdown($selectId = null)
{
/* Category Dropdown */
$categoryData = ProductCategory::get();
$categoryOptions = '<option value="">--</option>';
foreach ($categoryData as $item) {
$selected = '';
if (!is_null($selectId) && $item->id == $selectId) {
$selected = 'selected';
}
$categoryOptions .= '<option ' . $selected . ' value="' . $item->id . '"> ' . $item->category_name . ' </option>';
}
return $categoryOptions;
}
public function subCategoryDropdown($selectId)
{
/* Sub-Category Dropdown */
$subCategoryData = ProductSubCategory::get();
$subCategoryOptions = '<option value="">--</option>';
foreach ($subCategoryData as $item) {
$selected = '';
if ($item->id == $selectId) {
$selected = 'selected';
}
$subCategoryOptions .= '<option ' . $selected . ' value="' . $item->id . '"> ' . $item->category_name . ' </option>';
}
return $subCategoryOptions;
}
public function getSubCategories($id)
{
$sub_categories = ProductSubCategory::where('category_id', $id)->get();
return Reply::dataOnly(['status' => 'success', 'data' => $sub_categories]);
}
}