@section('style') @endsection @extends('layouts.backend.app') @section('content')

{{ __('Dashboard') }}

{{ __('Total Earnings') }}

{{ number_format($totalearns,2) }}

{{ __('Total Payouts') }}

{{ number_format($totalPayouts,2) }}

{{ __('Total Restaurant') }}

{{ number_format($resturents) }}

{{ __('Total Customers') }}

{{ number_format($customers) }}
{{ __('Order Statistics') }}
{{ $totalPending }}
{{ __('In Pending') }}
{{ $totalProccessing }}
{{ __('In Processing') }}
{{ $totalCompleted }}
{{ __('Completed') }}

{{ __('Total Orders') }}

{{ number_format($totalOrders) }}
{{ __('Todays order Statistics') }}
{{ number_format($totalTodayPending) }}
{{ __('In Pending') }}
{{ number_format($totalTodayProccessing) }}
{{ __('In Processing') }}
{{ $totalTodaComplete }}
{{ __('Completed') }}

{{ __('Total Orders') }}

{{ number_format($totalTodaOrders) }}
{{ __('Payout Statistics') }}
{{ $totalPayoutPending }}
{{ __('In Pending') }}
{{ $totalPayoutPending }}
{{ __('In Pending') }}
{{ $totalPayoutComplete }}
{{ __('Completed') }}

{{ __('Total Payouts') }}

{{ number_format($totalPayoutCount) }}

{{ __('New Resturent Request') }}

    @foreach($requestResturent as $row)
  • @if(empty($row->email_verified_at))
    {{ __('Not Verified') }}
    @else
    {{ __('Verified') }}
    @endif
    {{ $row->name }}
    {{ $row->email }}
    {{ $row->created_at->diffforHumans() }}
  • @endforeach

{{ __('New Rider Request') }}

    @foreach($requestRider as $row)
  • @if(empty($row->email_verified_at))
    {{ __('Not Verified') }}
    @else
    {{ __('Verified') }}
    @endif
    {{ $row->name }}
    {{ $row->email }}
    {{ $row->created_at->diffforHumans() }}
  • @endforeach
@csrf @php $json=json_decode($announcement->value ?? ''); @endphp

{{ __('Announcement') }}

Please fill in the title
Please fill in the title

{{ __('New Order') }}

@foreach($newOrders as $row) @endforeach
{{ __('Order Type') }} {{ __('Amount') }} {{ __('Author') }} {{ __('Action') }}
@if($row->order_type == 1) {{ __('Home Delivery') }} @else {{ __('Pickup') }} @endif {{ number_format($row->total+$row->shipping) }} {{ $row->vendor->name ?? null }}
@endsection @section('script') @endsection