@extends('layouts.app') @section('content')

Product Categories

@include('validate')

Product Categories

@if($action == 'CREATE')
@csrf
@endif @if($action == 'UPDATE')
@csrf @method('PUT')
@endif
@forelse ($categoryList as $cateKey => $category) @foreach ($category->subcategories as $subKey => $subcategory) @endforeach @empty @endforelse
# Category Sub Category Action
{{ $cateKey+1 }} {{ $category->category_name }}
{{ $cateKey+1 }}.{{ $subKey+1 }} {{ $subcategory->category_name }}
No Details Found.
@endsection @push('scripts') @endpush