@extends('layouts.instructor') @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 }} |
{{ course_enrollments($row->id). ' ' .get_phrase('students') }} |
{{ get_phrase(ucfirst($row->status)) }} |
@if ($row->is_paid == 0)
{{ get_phrase('Free') }} @else{{ currency($row->discounted_price) }} @endif |
{{ get_phrase('Showing') . ' ' . count($courses) . ' ' . get_phrase('of') . ' ' . $courses->total() . ' ' . get_phrase('data') }}
{{ $courses->links() }}