@extends('layouts.app') @extends('layouts.navbar') @section('content')
@include('profile.nav')
@if(session()->has('msg')) @endif

{{ __("Ride Analytics") }}

@if (Route::currentRouteName() == "profile.driverAnalytics")
Today
Cancelled
{{ $today_cancelled }}
Completed
{{ $today_completed }}
Total Earnings (INR)
{{ number_format($today_total, 0, '', ',') }}
This Month
Cancelled
{{ $thisMonth_cancelled }}
Completed
{{ $thisMonth_completed }}
Total Earnings (INR)
{{ number_format($thisMonth_total, 0, '', ',') }}
Total
Cancelled
{{ $lifetime_cancelled }}
Completed
{{ $lifetime_completed }}
Total Earnings (INR)
{{ number_format($lifetime_total, 0, '', ',') }}
Subscriptions
Total Subscriptions
{{ $lifetime_subs }}
Total Earnings (in INR with GST)
{{ number_format($lifetime_subAmt, 0, '', ',') }}
@endif @if (Route::currentRouteName() == "profile.custAnalytics")
Today
Cancelled
{{ $today_cancelled }}
Completed
{{ $today_completed }}
Total Earnings (INR)
{{ number_format($today_total, 0, '', ',') }}
This Month
Cancelled
{{ $thisMonth_cancelled }}
Completed
{{ $thisMonth_completed }}
Total Earnings (INR)
{{ number_format($thisMonth_total, 0, '', ',') }}
Total
Cancelled
{{ $lifetime_cancelled }}
Completed
{{ $lifetime_completed }}
Total Earnings (INR)
{{ number_format($lifetime_total, 0, '', ',') }}
@endif
@endsection @extends('layouts.footer')