@extends('layouts.app',['include_menu' => true]) @section('content')
  • @role('seller')

    {{ __('transaction.total_earned_income') }}

    {{ $currency_symbol }}{{ number_format($total_earning, 2) }}
    @endrole @role('buyer')

    {{ __('transaction.project_spent_amt') }}

    {{ $currency_symbol }}{{ number_format($project_spend_amount, 2) }}
    @endrole
  • @role('seller')

    {{ __('transaction.funds_withdraw') }}

    {{ $currency_symbol }}{{ number_format($withdraw_amount, 2) }}
    @endrole @role('buyer')

    {{ __('transaction.total_ongoing_order_amt') }}

    {{ $currency_symbol }}{{ number_format($ongoing_amount, 2) }}
    @endrole
  • @role('seller')

    {{ __('transaction.onging_orders_amount') }}

    {{ $currency_symbol }}{{ number_format($pending_income, 2) }}
    @endrole @role('buyer')

    {{ __('transaction.gig_spend_amt') }}

    {{ $currency_symbol }}{{ number_format($gig_spend_amount, 2) }}
    @endrole
  • {{ __('transaction.funds_in_wallet') }}

    {{ $currency_symbol }}{{ number_format($available_balance, 2) }}
@role('seller')
{{__('transaction.earning_detail')}}
@else
{{__('transaction.spend_amount_detail')}}
@endrole
@role('seller') @else @endif
@if( ( $method_type == 'escrow' && $user_role == 'buyer' ) || $user_role == 'seller')
@endif
@endsection('content') @push('scripts') @endpush