@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Dashboard')) @section('content')
{{ __('Here’s a quick overview of your performance this month.') }}
{{ __('Buy Courses') }} : {{ $student?->enrollments_count }}
{{ __('Total Courses') }} : 0
{{ __('Total Courses') }} : {{ $instructor?->courses_count }}
{{ __('Buy Courses') }} : 0
| {{ __('ID') }} | {{ __('Course') }} | {{ __('Category') }} | {{ __('Views') }} | {{ __('Sale Price') }} | {{ __('Instructor') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| #{{ $course->id }} |
{{ $course->title }} |
{{ $course->category?->title }} | {{ $course->view_count }} | @php $total = 0; $transactions = $course->transactions->where('is_paid', 1); foreach ($transactions as $transaction) { $total += $transaction->payment_amount; } @endphp{{ currency($total) }} | {{ $course->instructor->user->name }} | |
{{ __('No Course Available') }} |
||||||