@extends('layouts.room-booking-master') @section('title') Dashboard @endsection @section('css') @endsection @section('content') @can('view dashboard') {{-- custom date Modal --}} {{-- end custom date Modal --}}

{{ $greeting }}, {{ Auth::user()->name }}!

Here's what's happening with your business today.

Available Rooms
Total Rooms

{{ $totalRoomsCount }}

Available

{{ $availableRoomsCount ?? 0 }}

In Use

{{ $bookedRoomsCount ?? 0 }}

Checkouts Today

{{ $checkOutsToday ?? 0 }}

@foreach ($rooms as $index => $room) @if (($index + 1) % 5 == 0) @endif @endforeach
{{ $room->name }}
{{ $room->roomBookingItems->isNotEmpty() ? 'Booked' : 'Available' }}
@else

{{ $greeting }}, {{ Auth::user()->name }}!

Here's what's happening with your business today.

@endcan @endsection @section('script') @endsection