@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
{{__('app.instructor')}} {{__('app.payment_method')}} {{__('app.request_date')}} {{__('app.amount')}}
{{__('app.name')}}: {{$withdraw->user->instructor->name}}
{{__('app.phone')}}: {{$withdraw->user->instructor->phone_number}}
@if($withdraw->payment_method == 'paypal')
{{__('app.payment_method')}}: PayPal
{{__('app.email')}}: {{$withdraw->user->paypal ? $withdraw->user->paypal->email : '' }}
@endif @if($withdraw->payment_method == 'card')
{{__('app.payment_method')}}: Card
@if($withdraw->user->card)
{{__('app.card_number')}}: {{$withdraw->user->card->card_number }}
{{__('app.car_holder')}}: {{$withdraw->user->card->card_holder_name }}
{{__('app.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