@extends('layouts.backend.app') @section('style') @endsection @section('content') @php $currency=\App\Options::where('key','currency_icon')->select('value')->first(); @endphp

{{ __('Sales earnings in last 30 days') }} {{ __('before taxes') }}

{{ strtoupper($currency->value) }} {{ number_format($currentMonthAmount) }}

{{ __('Your balance') }}:

{{ strtoupper($currency->value) }} {{ number_format($currentMonthAmount-$currentMonthTax-$totalWithdraw) }}

{{ __('Total value of your sales, before taxes') }}:

{{ strtoupper($currency->value) }} {{ number_format($totals) }}

{{ __('Orders') }}

@foreach($allorders as $row) @endforeach
{{ __('ORDER ID') }} {{ __('Amount') }} {{ __('Commssion') }} {{ __('Order Typ') }}e {{ __('Date') }}
#{{ $row->id }} {{ strtoupper($currency->value) }} {{ $row->total }} -{{ strtoupper($currency->value) }} {{ $row->commission }} @if($row->order_type == 1) {{ __('Home Delivery') }} @else {{ __('Pickup Delivery') }} @endif {{ $row->created_at->format('Y-F-d') }}
{{ $allorders->links() }}

{{ __('Overview Of Amount') }}

  • {{ __('Total') }} {{ $total ?? number_format($totals) }}
  • {{ __('Commisions') }} {{ $tax ?? number_format($currentMonthAmount-$currentMonthTax) }}
  • {{ __('Balance') }} {{ $net_total ?? number_format($currentMonthAmount-$currentMonthTax) }}
@endsection @section('script') @endsection