@vite(['resources/css/app.css', 'resources/js/app.js']) @php $currentSection = request()->route('section'); $sectionTitles = [ 'hero' => 'Hero Section', 'transform' => 'Transformasi', 'about' => 'Tentang Kami', 'services' => 'Layanan', 'gallery' => 'Galeri Proyek', 'contact' => 'Kontak & Maps', 'footer' => 'Footer', ]; $activeSectionTitle = $currentSection ? $sectionTitles[$currentSection] ?? ucfirst((string) $currentSection) : null; @endphp

{{ $title ?? 'Admin CMS' }}

@if ($activeSectionTitle)

Sedang mengelola: {{ $activeSectionTitle }}

@endif
Preview
{{ $slot }}