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

{{ __('Earnings this month') }} ({{ date('F') }})

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

{{ __('Your balance') }}

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

{{ __('Total value of your Earnings') }}

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

{{ __('History') }}

@foreach($allorders as $row) @endforeach
{{ __('ORDER ID') }} {{ __('Commision') }} {{ __('Date') }} {{ __('View') }}
#{{ $row->order_id }} {{ strtoupper($currency->value) }}{{ $row->commision }} {{ $row->created_at->format('Y-F-d') }}
{{ $allorders->links() }}
@endsection @section('script') @endsection