@extends('layouts.sidebar')
@section('title', 'Dashboard')
@section('content')
@if (in_array('Employee UserInterface', $privileges))
@if ($showBirthdayNotification)
🎉
Your Birthday is Coming Up! 🥳
Mark your calendar — it's on
{{ \Carbon\Carbon::parse($user->employee->date_of_birth)->format('F d') }}
! 🎂
🎁
@endif
@elseif(in_array('Client Interface', $privileges))
🎉 Upcoming Birthdays
No upcoming birthdays found.
📅 Contracts Ending Soon
No upcoming contract endings.
@else
Employees
Agencies
Companies
Clients
🎉 Upcoming Birthdays
No upcoming birthdays found.
📅 Contracts Ending Soon
No upcoming contract endings.
@endif
@endsection