@extends('layouts.app') @section('content')
@include('admin.panel._nav')

Konten Section Homepage

@foreach ($sections as $section) @endforeach
Section Judul Item Status Aksi
{{ $section->name }} {{ $section->title ?: '-' }} {{ $section->items_count }} @if ($section->is_active) Aktif @else Nonaktif @endif
@can('edit sections') Edit
@csrf @method('PATCH')
@endcan
@endsection