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

Welcome back, {{ auth()->user()->name }}

{{ now()->format('l, d M Y') }} • Admin route protected with authentication

{{ auth()->user()->email }} Authenticated session
@csrf
@foreach ($metrics as $metric)
{{ $metric['label'] }} {{ $metric['value'] }}

{{ $metric['detail'] }}

@endforeach
Content Studio

Create and edit site sections

Jump into Home, Blog, Experiments, About, and Contact from one admin workspace. Each section now has dedicated create and edit entry points to organize your next updates.

@foreach ($sections as $section) @endforeach
Idea

Create a calm, useful admin center

This dashboard is designed as the foundation for managing the public website. It combines a top navigation bar, a sidebar for section movement, and a clean body layout where future modules can grow.

  • Use one protected route group for all admin tools
  • Keep the interface readable, focused, and easy to expand
  • Add create and edit entry points for each public section
Workflow

Recommended admin workflow

@foreach ($workflow as $step)
{{ $loop->iteration }}. {{ $step['title'] }}

{{ $step['description'] }}

@endforeach
Quick Actions

Next steps for this dashboard

@foreach ($quickActions as $action)
{{ $action }}

Ready to turn into a dedicated admin module.

@endforeach
Security

Admin route structure

  • GET /admin/login for the login page
  • POST /admin/login to authenticate the admin
  • GET /admin/dashboard protected by auth and admin middleware
  • POST /admin/logout to close the session safely
@endsection