@extends('layouts.admin') @section('content')
icon

{{ $total_admins }}

{{ __('Total Admin') }}

icon

{{ $total_instructors }}

{{ __('Total Instructors') }}

icon

{{ $total_students }}

{{ __('Total Students') }}

icon

{{ $total_courses }}

{{ __('Total Courses') }}

icon

{{ $total_active_courses }}

{{ __('Active Courses') }}

icon

{{ $total_pending_courses }}

{{ __('Pending Courses') }}

icon

{{ $total_free_courses }}

{{ __('Free Courses') }}

icon

{{ $total_paid_courses }}

{{ __('Paid Courses') }}

icon

{{ $total_lessons }}

{{ __('Total Lessons') }}

icon

{{ $total_lectures }}

{{ __('Total Lectures') }}

icon

{{ $total_blogs }}

{{ __('Total Blogs') }}

icon

@if(get_currency_placement() == 'after') {{ $total_paid_sales }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_paid_sales }} @endif

{{ __('Total Paid Sales') }}

icon

{{ $total_free_sales }}

{{ __('Total Free Sales') }}

icon

@if(get_currency_placement() == 'after') {{ $total_platform_charge }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_platform_charge }} @endif

{{ __('Total Platform Charge') }}

icon

@if(get_currency_placement() == 'after') {{ $total_platform_charge_this_month }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_platform_charge_this_month }} @endif

{{ __('Total Platform Charge (Current Month)') }}

icon

@if(get_currency_placement() == 'after') {{ $total_admin_commission }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_admin_commission }} @endif

{{ __('Total Sell Commission') }}

icon

@if(get_currency_placement() == 'after') {{ $total_admin_commission_this_month }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_admin_commission_this_month }} @endif

{{ __('Total Sell Commission (Current Month)') }}

icon

@if(get_currency_placement() == 'after') {{ $total_revenue }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_revenue }} @endif

{{ __('Total Revenue') }}

icon

@if(get_currency_placement() == 'after') {{ $total_new_withdraws }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_new_withdraws }} @endif

{{ __('Total Request Withdraw') }}

icon

@if(get_currency_placement() == 'after') {{ $total_complete_withdraws }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $total_complete_withdraws }} @endif

{{ __('Total Complete Withdraw') }}

{{ __('Enrollment') }}

{{ __('Total Enrollment') }} {{ $total_enrolments }}

{{ __('Top Seller') }}

{{ __('Top Courses') }}

@foreach($total_ten_courses as $course) @endforeach
{{ __('Course') }} {{ __('Instructor Name') }} {{ __('Price') }} {{ __('Total') }}
{{ Str::limit($course->title, 90) }} {{ @$course->instructor->name }} {{ $course->price }} {{ $course->totalOrder }}

{{ __('Requested Withdrawal') }}

@forelse($withdraws as $withdraw) @empty @endforelse
{{__('Instructor')}} {{__('Payment Method')}} {{__('Request Date')}} {{__('Amount')}}
{{__('Name')}}: {{$withdraw->user->student->name ?? $withdraw->user->instructor->name}}
{{__('Phone')}}: {{$withdraw->user->student->phone_number ?? $withdraw->user->instructor->phone_number}}
@if($withdraw->payment_method == 'paypal')
{{__('Payment Method')}}: PayPal
{{__('Email')}}: {{$withdraw->user->paypal ? $withdraw->user->paypal->email : '' }}
@endif @if($withdraw->payment_method == 'card')
{{__('Payment Method')}}: Card
@if($withdraw->user->card)
{{__('Card Number')}}: {{$withdraw->user->card->card_number }}
{{__('Car Holder')}}: {{$withdraw->user->card->card_holder_name }}
{{__('Date')}}: {{$withdraw->user->card->month }}/{{$withdraw->user->card->year }}
@endif @endif
{{$withdraw->created_at->format('d M Y')}} @if(get_currency_placement() == 'after') {{$withdraw->amount}} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{$withdraw->amount}} @endif
{{ __('No Requested Found') }}
@endsection @push('script') @endpush