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

Manage Sub Category

@if ($message = Session::get('success'))

{{ $message }}

@endif @if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($childcategories as $childcategory) @endforeach
Category Name Child Category Name Slug Status Add Date Action
{{$childcategory->category_name}} {{ $childcategory->child_category_name }} {{ $childcategory->url }} @if ($childcategory->status === 1) Active @else In-active @endif {{ $childcategory->created_at }}
@csrf @method('DELETE')