{{number_format($rooms)}}

No of rooms

{{number_format($guests)}}

Total Guests

Recent Clients

@foreach($clients as $hotel)

{{ $hotel->name }}

{{ $hotel->phone }} {{$hotel->created_at->DiffForHumans()}}
A
@endforeach

Reservation Stats

Check In 23,451 +0.4% Check Out 20,441
Transactions YTD {{number_format($transactions)}}
60% Complete
Total Guests {{number_format($guests)}}
30% Complete

{{number_format($employees)}}

Total Employees

{{number_format($hotels)}}

Total Guests

{{number_format($rooms)}}

Total Room

{{number_format($transactions)}}

Total Transactions

StayEazi Activity Overview at a glance

StayEazi provides a convinient booking solution for all sizes of hotels

Upcoming Payments

@foreach($data as $key => $billing) @php // Check if the subscription is still valid $endDate = Carbon\Carbon::parse($billing->hotel->validity); $currentDate = Carbon\Carbon::now(); $daysLeft = round($currentDate->diffInDays($endDate, false)); @endphp @endforeach
# Hotel Amount Start Date End date Expiration
{{$key +1}} {{$billing->hotel->name}} ₦ {{number_format($billing->amount)}} {{ date('Y-m-d', strtotime($billing->start)) }} {{ date('Y-m-d', strtotime($billing->end)) }} @if($daysLeft < 20) {{$daysLeft}} days @else {{$daysLeft}} days @endif