@extends('layouts.sidebar')
@section('title', __('app.admin') . ' ' . __('app.dashboard') . ' - ' . __('app.company_name'))
@section('page-title', __('app.dashboard_calendar_admin_title'))
@section('page-description', __('app.admin_dashboard_control_subtitle'))
@php
$calCfg = \App\Support\DashboardCalendarConfig::merge($dashboardCalendar ?? null);
$calendarServerPrint = [
'weekAnchor' => \Carbon\Carbon::parse($calCfg['todayYmd'] ?? now()->format('Y-m-d')),
'schedule' => $calCfg['initialSchedule'] ?? [],
'timeSlots' => $calCfg['initialTimeSlots'] ?? [],
'roomLabelMap' => $calCfg['roomLabelMap'] ?? [],
];
@endphp
@push('styles')
@include('admin.partials.dashboard-calendar-print-styles')
@endpush
@section('content')