@extends('layouts.dashboard') @section('content')
@include('flash_msg')

@if(!empty($child_categories)) @foreach($child_categories as $key=>$value) @endforeach @if ($child_categories->count() == 0) @endif @endif
# Icon Child Category Status Action
{{ ++$key }} @if($value->icon) @endif {{ $value->name }} @if($value->status==1) Active @else Inactive @endif
No child categories to display.
# Icon Child Catgeory Status Action

Displaying {{$child_categories->count()}} of {{ $child_categories->total() }} child categories.

{{--
{{ $child_categories->appends(request()->all())->links() }}
--}}
@endsection