@extends('layouts.app') @section('title', 'Dashboard') @section('css') @endsection @section('content')

Dashboard

{{ $totalNewBooking }}
New Bookings for Today
{{ $totalPendingBooking }}
Total Pending Bookings
{{ $totalCompletedBooking }}
Total Completed Bookings
{{ $totalCancelledBooking }}
Total Cancelled Bookings

Service Booking

{{ $currentSubscription ? 'Active Plan' : 'Your Plan Detail' }}

@if($currentSubscription)

Plan Name: {{ $currentSubscription->plan_name }}

Plan Expired On: {{ date(config('constant.date_format.display_format'), strtotime($currentSubscription->end_date)) }}

@elseif($expiredSubscription)

Plan Name: {{ $expiredSubscription->plan_name }}

Your Plan Is Expired: {{ date(config('constant.date_format.display_format'), strtotime($expiredSubscription->end_date)) }}

@else

There are currently no plans associated with your account.

@endif
@if($currentSubscription) @endif

Booking Revenue

Completed Orders

@endsection @section('scripts') @endsection