@extends('layouts.instructor') @section('breadcrumb')
{{__('Analysis')}}
{{__('Dashboard')}}
{{__('Analysis')}}
@endsection @section('content')
{{ __('Number of Courses') }}
{{ $total_courses }}
{{ __('Total Enroll') }}
{{ $total_enroll }}
{{ __('Total Earning') }}
@if(get_currency_placement() == 'after') {{ number_format($total_earning, 2) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ number_format($total_earning, 2) }} @endif
{{ __('Available balance') }}
@if(get_currency_placement() == 'after') {{userBalance()}} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{userBalance()}} @endif
{{ __('Total Withdraw Amount') }}
@if(get_currency_placement() == 'after') {{ $total_withdraw_amount }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_withdraw_amount }} @endif
{{ __('Pending Withdraw Amount') }}
@if(get_currency_placement() == 'after') {{ $total_pending_withdraw_amount }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_pending_withdraw_amount }} @endif
{{ __('Withdrawal Money') }}
{{ __('Withdrawal') }}
{{ __('Sale Statistics') }}
@endsection @section('modal')
{{ __('Available Balance') }}
@if(get_currency_placement() == 'after') {{userBalance()}} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{userBalance()}} @endif
@csrf
{{ __('Amount' ) }}
!
{{ __('Method') }}
!
{{ __('Withdraw with Paypal') }}
{{ __('Withdraw with Card') }}
{{ __('Make Withdraw') }}
@endsection @push('script') @endpush