@if (session('success'))
{{ session('success') }}
@endif @if ($subcategories->isEmpty())
You don’t have any subcategories yet.
@else
@csrf
@foreach ($subcategories as $index => $sub) @endforeach
# Subcategory Position Actions
{{ $index + 1 }} {{ $sub->name }} @if (!empty($sub->description))
{{ \Illuminate\Support\Str::limit($sub->description, 80) }}
@endif
@endif
@include('vendorr.footer') @section('scripts') @vite('resources/assets/js/table-data.js') @endsection