@vite(['resources/css/app.css', 'resources/js/app.js']) @stack('styles')
@include('employee.partials.sidebar')

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

@include('partials.panel-notifications', [ 'dropdownId' => 'employeeNotificationsMenu', 'alignmentClass' => 'right-0', ]) View Site
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
@if(session('success'))
{{ session('success') }}
@endif @yield('content')
@stack('scripts')