@extends('admin.layouts.main') @php $page_name = 'Sub Category'; @endphp @section('content')

{{ $edit ? 'Edit' : 'Add' }} {{ $page_name }}

@csrf @if ($edit) @endif
{{ $page_name }} List
Please upload a banner image (Recommended size: 800×800 px, Maximum size: 5MB).
@foreach ($subCategories as $subCategory) @endforeach
# Sub Category Category Banner Status Actions
{{ $loop->iteration }} {{ $subCategory->name }} {{ $subCategory->category_name }}
@if ($subCategory->banner) @else @endif
{{ $subCategory->active ? 'Active' : 'Inactive' }}
Edit
@if (count($subCategories))
{{ $subCategories->links() }}
@endif
@include('components.alertmodal', [ 'modal_id' => 'deleteSubCategoryModal', 'form_id' => 'deleteSubCategoryForm', 'action' => route('admin.deletesubcategory'), 'modal_title' => 'Alert!', 'input_id' => 'deleteSubCategoryId', 'modal_mess' => 'Are you sure you want to delete this SubCategory?', 'button_type' => 'submit', 'button_id' => 'confirmDeleteSubCategoryButton', ]) @endsection @section('script') @endsection