@extends('layouts.app') @section('title', 'Product Categories') @section('content')

Dashboard

@if (session('success')) @endif @forelse($datalist as $data) @foreach($data->subCategories as $child) @endforeach @empty @endforelse
Category Name Sub-Category Status Actions
{{ $data->name }} {{ $data->status == 1 ? 'Active' : 'Inactive' }} Edit
{{ $child->name }} {{ $child->status == 1 ? 'Active' : 'Inactive' }} Edit
No categories found
@endsection @push('style') @endpush @push('script') @endpush