@extends('admin.layouts.app') @section('title', 'Dashboard') @section('content')

Dashboard

{{ $stats['content_sections'] }}

Content Sections

{{ $stats['statistics'] }}

Statistics

{{ $stats['admin_users'] }}

Admin Users

{{ $stats['active_sections'] }}

Active Sections

{{--
Active Content Sections
Add New
@if ($activeContentSections->count() > 0)
@foreach ($activeContentSections as $section) @endforeach
Section Key Title Sort Order Last Updated Actions
{{ $section->section_key }} {{ Str::limit($section->title, 50) }} {{ $section->sort_order }} {{ $section->updated_at->format('M d, Y H:i') }}
@else

No active content sections found.

Create First Section
@endif
--}}
@endsection