@extends('layouts.app') @section('title', $app_setting['name'] . ' | '.__('Dashboard')) @section('content')
{{ __('Course Sele Overview') }}
{{ __('Overview Chart') }}
| {{ __('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') }} |
||||||