@extends('layouts.admin') @section('title', 'Kelola Page Heroes') @section('content')
Kelola hero section untuk setiap halaman website
Total Heroes
{{ $pageHeroes->count() }}
Aktif
{{ $pageHeroes->where('is_active', true)->count() }}
Nonaktif
{{ $pageHeroes->where('is_active', false)->count() }}
Konfigurasi default
| Hero Section | Halaman | Tinggi | Status | Dibuat | Aksi |
|---|---|---|---|---|---|
|
@if($hero->background_image)
{{ Str::limit($hero->title, 40) }}
@if($hero->subtitle)
{{ Str::limit($hero->subtitle, 50) }}
@endif
|
{{ App\Models\PageHero::getPageIdentifierOptions()[$hero->page_identifier] ?? ucfirst($hero->page_identifier) }} | {{ App\Models\PageHero::getHeightOptions()[$hero->height] ?? ucfirst($hero->height) }} | @if($hero->is_active) Aktif @else Nonaktif @endif | {{ $hero->created_at->format('d M Y') }} | |
Belum ada hero sectionMulai menambahkan hero section untuk halaman-halaman website Tambah Hero dapat |
|||||