@extends('layouts.public-canvas') @section('title') {{ __('modules')['home']['calendar'] }} @endsection @section('styles') {{-- --}} @endsection @section('php-controls') @php // Imports use \App\Models\Environment\Business; use \App\Models\User; // Data $user_reference_photo = User::where('id', 1)->value('profile_photo'); $business = Business::select('business_name', 'features_configuration')->first(); $system_features_helper = (object) $business->features_configuration; $has_pax_pricing = $system_features_helper->has_pax_pricing; $has_control_hours = $system_features_helper->has_control_hours; $has_express_reservations = $system_features_helper->has_express_reservations; @endphp @endsection @section('navbar') @include('shared.components.navbar.public-navbar', ['hotel_name' => $business->business_name, 'hotel_logo' => $user_reference_photo]) @endsection @section('content') {{-- Calendar Structures --}}
{{-- Tabs --}} @if ($has_express_reservations) @endif {{--Contenido--}}
@if ($has_express_reservations)
@endif
@endsection @section('footer') @include('shared.components.footer.basic-footer') @endsection @section('import-scripts') @include("hotel.public-calendar.complements.shared-calendar-scripts") @include("hotel.public-calendar.complements.normal-calendar-scripts") @if ($has_express_reservations) @include("hotel.public-calendar.complements.express-calendar-scripts") @endif @endsection