@extends('layouts.admin') @push('title', get_phrase('Course Manager')) @section('content')
{{ get_phrase('Showing') . ' ' . count($courses) . ' ' . get_phrase('of') . ' ' . $courses->total() . ' ' . get_phrase('data') }}
# | {{ get_phrase('Title') }} | {{ get_phrase('Category') }} | {{ get_phrase('Lesson & Section') }} | {{ get_phrase('Enrolled Student') }} | {{ get_phrase('Status') }} | {{ get_phrase('Price') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|---|---|---|
{{ ++$key }} |
@if($row->category)
{{ category_by_course($row->category_id)->title }}
@endif
|
{{ get_phrase('Enrollment History') }}: {{ course_enrollments($row->id) }} |
{{ get_phrase(ucfirst($row->status)) }} |
@if ($row->is_paid == 0)
{{ get_phrase('Free') }} @elseif($row->discount_flag == 1){{ currency($row->discounted_price) }} {{ currency($row->price) }} @endif |
{{ get_phrase('Showing') . ' ' . count($courses) . ' ' . get_phrase('of') . ' ' . $courses->total() . ' ' . get_phrase('data') }}
{{ $courses->links() }}