@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); @endphp

{{ __('Child Categories') }}

@if (session('success')) @endif @if ($errors->any()) @endif
Create Child Category
@csrf
Please select a parent category.
Please enter a child category title.
Child Category Table
@forelse($childCategories as $childCategory) @empty @endforelse
Title Parent Category Volumn Status Sort Order Actions
@if ($childCategory->image) {{ $childCategory->title }} @endif
{{ $childCategory->title ?? '' }}
@if ($childCategory->description) {{ Str::limit($childCategory->description ?? '', 50) }} @endif
{{ $childCategory->mainParentCategory->title ?? '' }} @if ($childCategory->volumn) {{ $childCategory->volumn ?? '' }} /m³ @else - @endif @if ($childCategory->is_active) Active @else Inactive @endif {{ $childCategory->sort_order ?? '' }}
No data
Title Parent Category Volumn Status Sort Order Actions
{{-- Delete Confirmation Modal --}} @include('Admin.Includes.footer')