{{-- resources/views/layouts/dashboard.blade.php --}} @php $koperasiNama = ks('koperasi.nama', 'Blm Ada nama Koperasi'); // Logo (public/images/...) $logoPath = ks('koperasi.logo_path'); // contoh: images/logokoperasi.png $logoUrl = !empty($logoPath) ? asset($logoPath) : asset('images/logo.png'); $logoUrlBusted = $logoUrl . '?v=' . time(); $tahun = date('Y'); $pageTitle = trim($__env->yieldContent('title')); $pageTitle = $pageTitle !== '' ? $pageTitle : 'Dashboard'; // Theme colors from settings $cSidebarStart = ks('theme.sidebar_start', '#7a1f2b'); $cSidebarMid = ks('theme.sidebar_mid', '#b93a4b'); $cSidebarEnd = ks('theme.sidebar_end', '#ec644b'); $cAccent = ks('theme.accent', '#0b5ed7'); @endphp {{ $pageTitle }} - {{ $koperasiNama }} {{ $tahun }} @stack('styles')
{{-- Sidebar kiri --}} @include('layouts.partials.sidebar') {{-- Konten utama --}}
@yield('content')
@stack('scripts')