@extends('admin.framework') @section('title') Child Categories @endsection @section('head') @endsection @section('back_content')

Product Child Categories

All Child Categories




@foreach($childcategories as $category) @endforeach
Category Sub-Category Child-Category Added On Actions
{{$category->parent_category}} {{$category->sub_category}} {{$category->child_category}} {{$category->created_at}} {!! Form::open(array('url' => 'childcategories/' . $category->id, 'class' => 'd-inline')) !!} {!! Form::hidden('_method', 'DELETE') !!} {!! Form::button('', array('class' => 'd-inline btn btn-sm','type' => 'button', 'data-toggle' => 'modal', 'data-target' => '#confirmDelete', 'data-title' => 'Delete Category', 'data-message' => 'Are you sure you want to delete this category ?')) !!} {!! Form::close() !!} @include('modals.edit-child-category')
@include('modals.modal-delete') @endsection @section('back_footer') @include('modals.add-child-category') @include('scripts.delete-modal-script') @endsection