@extends('admin.layouts.master') @section('title') Product's Category @endsection @section('css') @include('addOns.dataTables.css') @endsection @section('content')

Product's Categories

Create New Category

Main categories

@foreach ($mainCats as $mainCat) @endforeach
Name Options
{{ $mainCat->name_sr }}
@csrf @method('DELETE')

Subcategories

@foreach ($subCats as $subCat) @endforeach
Name Main Category Options
{{ $subCat->name_sr }} {{ $subCat->parent->name_sr }}
@csrf @method('DELETE')
@endsection @section('scripts') @include('addOns.dataTables.js') @endsection