@extends('admin.master') @section('content')
Manage section type, title, subtitle and status
| # | Type | Title | Subtitle | Status | Action |
|---|---|---|---|---|---|
| {{ $sections->firstItem() + $key }} | {{ $section->type_label }} | {{ $section->title }} | {{ $section->subtitle }} | @if($section->is_active) Active @else Inactive @endif | |
| No section found | |||||
Manage section items with image, title and description
| # | 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)
|
{{ $item->title }} | {{ \Illuminate\Support\Str::limit($item->description, 60) }} | {{ $item->display_order }} | @if($item->is_active) Active @else Inactive @endif | |
| No item found | ||||||||