@extends('layouts.main') @section('title', 'Property Dashboard') @section('css') @endsection @section('nav') @include('layouts.nav') @endsection @section('content') @if (\Session::has('success'))
@endif @if (\Session::has('error'))
@endif

{{ __('calendar.bulk_upload') }}

{{ csrf_field() }}

Revenue Statistics

@if(false) Room Nights
43
-8.1%
56
92
-8.1%
87

Room Nights
43
-8.1%
56
92
-8.1%
87

@endif

Today

    @if(count($data->todayCheckins) == 0)

    No arrivals today

    @endif @foreach( $data->todayCheckins as $key => $booking )
  • {{ $booking->checkin_month }}

    {{ $booking->checkin_day }}

    {{ $booking->checkout_month }}

    {{ $booking->checkout_day }}

    {{ isset($booking->booking_room_id) ? $booking->booking->total_pax : $booking->guests }} Guest : {{ $booking->nights }} Nights
    Guest arrival time
    No time provided
    Received:
    {{ $booking->created_at->format('D, M d, Y') }}
    {{--

    2 New messages

    --}}
  • @endforeach

Recent Bookings

    @foreach( $data->recentBookings as $key => $booking )
  • {{ $booking->checkin_month }}

    {{ $booking->checkin_day }}

    {{ $booking->checkout_month }}

    {{ $booking->checkout_day }}

    {{ isset($booking->booking_room_id) ? $booking->booking->total_pax : $booking->guests }} Guest : {{ $booking->nights }} Nights
    Guest arrival time
    No time provided
    Received:
    {{ $booking->created_at->format('D, M d, Y') }}
    {{--

    2 New messages

    --}}
    @if(isset($booking->special_request) && $booking->special_request != null)   Special Request: {{ $booking->special_request }} @endif
    @if(isset($booking->comments) && $booking->comments != null)   Call-Center Comments: {{ $booking->comments }} @endif
  • @endforeach
{{--
--}} {{--

Recent Reviews

--}} {{--
--}} {{--
--}} {{--

You have no recent activity

--}} {{--
--}}
@if(Session::get('isMasterAdminUser'))

Today's Exchange Rate

1 USD = {{ $exchangeRate }} LKR
@endif {{--
--}} {{--

Notifications

--}} {{--
--}} {{--
--}} {{--@if(isset($data->updated_date))--}} {{--
--}} {{--Last Price Update:
--}} {{--{{ $data->updated_date->format('D, M d, Y').' at '.$data->updated_date->format('H:iA') }}--}} {{--
--}} {{--@endif--}} {{--@foreach( $data->notifications as $key => $notification )--}} {{--
--}} {{--{!! $notification->message !!}--}} {{--
--}} {{--@endforeach--}} {{--
--}} {{--
--}} {{--

Revenue in Graph

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
{{--@foreach($revenueDataArray as $key => $revenue)--}} {{----}} {{--@endforeach--}} {{--@foreach($revenueDataArrayLastYear as $key => $revenue)--}} {{----}} {{--@endforeach--}} @foreach($revenueStats as $key => $stat) @endforeach @endsection @section('scripts') {{-- --}} @endsection