@extends('layouts.organization') @section('breadcrumb')

{{__('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') @endsection @push('script') @endpush