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

Hey, {{auth::user()->organization ? auth::user()->organization->name : '' }} student

@endsection @section('content')
{{__('Earning')}}({{__('This Month')}})
@if(get_currency_placement() == 'after') {{ number_format(@$total_earning_this_month, 2) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ number_format(@$total_earning_this_month, 2) }} @endif
{{__('Total Enroll')}} ({{__('This Month')}})
{{ @$total_enroll_this_month ?? 0 }}
{{__('Total Course')}}
{{ $totalCourse ?? 0 }}
{{__('Total Instructor')}}
{{ $totalInstructor ?? 0 }}
{{__('Total Student')}}
{{ $totalStudent ?? 0 }}
{{__('Best Selling Course')}}
@if (@$best_selling_course->course->title) {{ Str::limit(@$best_selling_course->course->title, 25) }} @else {{ __('No course found yet.') }} @endif
{{__('Recently Added Courses')}}
{{ __('View All') }}
@foreach($recentCourses as $recentCourse)
img
{{ Str::limit($recentCourse->title, 25) }}

{{ courseStudents($recentCourse->id) }} {{__('Enroll')}}

@endforeach
{{ __('Top Instructor (This Month)') }}
{{__('Upload Your Course Today')}}
{{__('Upload Course')}}
{{__('Sale Statistics')}}
@endsection @push('style') @endpush @push('script') @endpush