@extends('layouts.master') @section('styles') @endsection @section('content')

Categories

Drag to reorder. Position changes will be saved automatically.
+ Add
    @foreach($sections as $section)
  • {{ $section->title }}
    Theme: {{ $section->cat_theme ?? '-' }} ยท Order: {{ $section->row_order }}
    @if($section->status == 1) Active @else Inactive @endif
  • @endforeach
Add Category @php $columns = [ ['checkbox' => true, 'class' => 'ps-4'], ['label' => 'Title'], ['label' => 'Theme'], ['label' => 'Status'], ['label' => 'Action'], ]; @endphp
@endsection @section('scripts') @include('layouts.components.common-script') @vite('resources/assets/js/modal.js') @vite('resources/assets/js/select2.js') @endsection