@stack('styles') {{-- SIDEBAR OVERLAY (mobile) --}}
{{-- SIDEBAR --}} {{-- MAIN --}}
{{-- TOP NAV --}}
Admin / @yield('title', 'Dashboard')
@php $jAlert = \App\Models\JobVacancy::where('is_active',true)->where('deadline','<=',now()->addDays(3))->count(); @endphp @if($jAlert > 0){{ $jAlert }}@endif
Website
{{-- CONTENT --}}
{{-- Flash --}} @if(session('success'))
Berhasil! {{ session('success') }}
@endif @if(session('error'))
Error! {{ session('error') }}
@endif @if($errors->any())
Terdapat kesalahan:
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif @yield('content')
@stack('scripts')