@extends('layouts.admin') @section('page-title') Categories @endsection @section('content')

    @forelse($categories as $data)
  • @if($data->parent_id==0) {{$data->name??''}} @endif
      @if($data->sub_category) @foreach($data->sub_category as $child)
    • {{$child->name??''}}
    • @endforeach @endif
  • @empty
  • Record Not Found
  • @endforelse
@endsection @push('custom-js-scripts') @endpush