@extends('layouts.admin_layout') @section('title', 'Manage Product Categories') @section('content') Manage Product Categories Home @if(!empty(count($breadcrumb))) Manage Product Categories @else Manage Product Categories @endif @foreach($breadcrumb as $key => $breadcrumb_row) @if($key == (count($breadcrumb) - 1)) Manage Product Categories - {{$breadcrumb_row->product_category_name}} @else Manage Product Categories - {{$breadcrumb_row->product_category_name}} @endif @endforeach @if(!empty($parent_product_category_id)) Add Product Category @else Add Product Category @endif Save Sorting Category Action @foreach($product_categories as $product_category_row) {{$product_category_row->product_category_name}} Edit Sub Categories @endforeach @endsection