Logo
SIMAJU

@yield('page-title', 'Dashboard')

@yield('page-subtitle', 'Sistem Informasi Manajemen Akademik Menuju Unggul')

@php $user = auth()->user(); $avatarText = ''; if ($user && $user->guru) { $words = explode(' ', $user->name); $avatarText = strtoupper(substr($words[0] ?? '', 0, 1) . substr($words[1] ?? '', 0, 1)); } else { $avatarText = strtoupper(substr($user->name ?? 'A', 0, 2)); } @endphp
{{ $avatarText }}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @yield('content')
@stack('scripts')