@extends('admin.master') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Feature Sections

Manage section type, title, subtitle and status

Add Section
@forelse($sections as $key => $section) @empty @endforelse
# Type Title Subtitle Status Action
{{ $sections->firstItem() + $key }} {{ $section->type_label }} {{ $section->title }} {{ $section->subtitle }} @if($section->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
No section found
{{ $sections->links() }}

Feature Items

Manage section items with image, title and description

Add Item
@forelse($items as $key => $item) @empty @endforelse
# Type Section Icon Title Description Order Status Action
{{ $items->firstItem() + $key }} {{ $item->section->type_label ?? 'N/A' }} {{ $item->section->title ?? 'N/A' }} @if($item->icon) icon @else No Icon @endif {{ $item->title }} {{ \Illuminate\Support\Str::limit($item->description, 60) }} {{ $item->display_order }} @if($item->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
No item found
{{ $items->links() }}
@endsection