@extends('admin.layout') @section('title', 'Week in a Glance — Sections') @section('page_heading', 'Week in a Glance — Sections') @section('content')
Add Section View Page
@if(session('status')) @endif @if($sections->isEmpty())

No sections yet. Add the first one.

@else

Drag rows to reorder how sections appear on the page.

@foreach($sections as $section) @endforeach
# Title Photos Actions
{{ $loop->iteration }} {{ $section->title ?: '(Untitled)' }} {{ $section->images()->count() }} Edit
@endif
@endsection @push('scripts') @endpush