@php
$top = "Facilities";
$title = "Hotel Facilities";
@endphp
@include('Frontend.Components.sec-top',compact('top','title'))
@php
$class = 'no-border is__home radius-6';
$icon = 'assets/images/icon/bed.svg';
$link = '#';
$title = 'Rooms and Suites';
$desc = 'Varied types of rooms, from standard to luxury suites, equipped with essentials like beds.';
@endphp
@include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))
@php
$class = 'no-border is__home radius-6';
$icon = 'assets/images/icon/security.svg';
$link = '#';
$title = '24-Hour Security';
$desc = 'On-site security personnel and best surveillance. from standard to luxury suites,Secure storage for valuables.';
@endphp
@include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))
@php
$class = 'no-border is__home radius-6';
$icon = 'assets/images/icon/gym.svg';
$link = '#';
$title = 'Fitness Center';
$desc = 'Equipped with exercise machines and weights.Offering massages, facials, and other treatments.';
@endphp
@include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))
@php
$class = 'no-border is__home radius-6';
$icon = 'assets/images/icon/swimming-pool.svg';
$link = '#';
$title = 'Swimming Pool';
$desc = 'Indoor or outdoor pools for leisure or exercise.Offering massages, facials, and other treatments.';
@endphp
@include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))