@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') }} {{ __('View All') }} @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') }} {{ __('View All') }} @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') }} {{ __('Title') }} Please fill in the title {{ __('Message') }} {{ $json->message ?? '' }} Please fill in the title {{ __('Status') }} lang ?? '' == 1) selected="" @endif>{{{ __('Show') }}} lang ?? '' == 0) selected="" @endif>{{ __('Hide') }} {{ __('New Order') }} View All {{ __('Order Type') }} {{ __('Amount') }} {{ __('Author') }} {{ __('Action') }} @foreach($newOrders as $row) @if($row->order_type == 1) {{ __('Home Delivery') }} @else {{ __('Pickup') }} @endif {{ number_format($row->total+$row->shipping) }} {{ $row->vendor->name ?? null }} @endforeach @endsection @section('script') @endsection