{{-- ── TOPBAR ─────────────────────────────────────────────── --}}
{{-- ── ALERTS ─────────────────────────────────────────── --}} @if(session('success')) @endif @if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif {{-- ── HARGA DEFAULT GLOBAL ─────────────────────────────── --}}

Harga Default Global

Berlaku untuk tema yang tidak memiliki harga khusus

@csrf
Rp

Nilai saat ini: Rp {{ number_format($defaultPrice, 0, ',', '.') }} · Disimpan di file .env

{{-- ── HARGA PER TEMA ─────────────────────────────────── --}}

Daftar Tema

Kelola harga, edit konten, atau tambah tema baru

@foreach($themes as $theme) @php $hasCustom = !is_null($theme->price); $thumbFile = $theme->thumbnail ?: ($theme->slug . '.png'); $thumbExists = file_exists(public_path('assets/thumbnail/' . $thumbFile)); @endphp
{{-- Thumbnail --}}
@if($thumbExists) @else
{{ substr($theme->name,0,2) }}
@endif
{{-- Info --}}

{{ $theme->name }}

{{ $theme->event_type_icon }}{{ $theme->event_type_label }} @if($theme->is_active) Aktif @else Nonaktif @endif @if($hasCustom) @if($theme->has_promo) Promo @else Harga Khusus @endif @else Pakai Default @endif
@if($theme->has_promo) {{ $theme->formatted_original_price }} {{ $theme->formatted_price }} @else {{ $theme->formatted_price }} @endif · {{ $theme->slug }}
{{-- Form harga --}}
@csrf
Normal:
Rp
Promo:
Rp
@if($hasCustom) @endif
{{-- Hidden reset form --}} @if($hasCustom) @endif {{-- Aksi: Edit & Hapus/Restore --}}
@if($theme->builder_config) 🎨 Builder @else Edit @endif @if($theme->is_active)
@csrf @method('DELETE')
@else
@csrf
@endif
@endforeach

Kosongkan field harga normal dan klik Simpan untuk menghapus harga khusus (tema akan kembali menggunakan harga default global).

{{-- ── RINGKASAN ─────────────────────────────────────── --}}
@php $customCount = $themes->whereNotNull('price')->count(); $defaultCount = $themes->whereNull('price')->count(); $minPrice = $themes->min('effective_price'); $maxPrice = $themes->max('effective_price'); @endphp
{{ $themes->count() }}
Total Tema
{{ $customCount }}
Harga Kh.
Rp
{{ number_format($minPrice, 0, ',', '.') }}
Terendah
Rp
{{ number_format($maxPrice, 0, ',', '.') }}
Tertinggi