@extends($layout_path) @section('title', $app_setting['name'] . ' | Course List') @section('header-title')
| # | {{ __('ID') }} | {{ __('Free & Publish') }} | {{ __('Course') }} | {{ __('Price') }} | {{ __('Instructor') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ generateID($course->id) }} |
is_free ? 'checked' : '' }}>
{{ $course->is_free ? 'Free' : 'Paid' }}
|
|
@if ($app_setting['currency_position'] == 'Left') {{ $app_setting['currency_symbol'] }}{{ $course->price ?? $course->regular_price }} @else {{ $course->price ?? $course->regular_price }}{{ $app_setting['currency_symbol'] }} @endif | {{ $course->instructor?->user?->name ?? 'N/A' }} |
@if ($course->is_active == false)
{{ __('Pending') }}
{{ __('Active') }}
|
{{ __('View Course') }} {{ __('Edit Course') }} {{ __('Delete Course') }} |
| {{ __('No course data found') }} | |||||||