{{-- resources/views/layouts/user.blade.php --}} @yield('title', 'Dashboard') — Jiade @yield('styles')
{{-- ═══════════ SIDEBAR ═══════════ --}} {{-- ═══════════ MAIN BODY ═══════════ --}}
{{-- Topbar --}}
{{ auth()->user()->name ?? 'James Supardi' }}
@{{ Str::slug(auth()->user()->name ?? 'ilhamsupardi', '') }}
{{ auth()->user()->name ?? 'User' }}
{{-- Content --}}
@yield('content')
{{-- /.app-body --}}
{{-- /.app-wrap --}} {{-- Mobile overlay --}}
{{-- Fixed utility buttons --}}
@include('partials.livechat-widget') {{-- Logout form --}} @if(auth()->check() && (int)(auth()->user()->is_suspended ?? 0) === 1 && (int)(auth()->user()->is_admin ?? 0) !== 1) @endif @stack('scripts')