@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Dashboard')) @section('header-title')
{{ __('Monitor your business analytics and statistics') }}.
@endsection @section('content'){{ __('Course Sele Overview') }}
{{ __('Overview Chart') }}
| {{ __('ID') }} | {{ __('Course') }} | {{ __('Category') }} | {{ __('Views') }} | {{ __('Sale Price') }} | {{ __('Instructor') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| #{{ generateID($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 }} | {{ __('View Course') }} {{ __('Edit Course') }} {{ __('Delete Course') }} |
{{ __('No Course Available') }} |
||||||