@extends('backend.layout') @section('content')
{{ __('Courses') . ' (' . $language->name . ' ' . __('Language') . ')' }}
@includeIf('backend.partials.languages')
{{ __('Add Course') }}
@if (session()->has('course_status_warning'))

{{ session()->get('course_status_warning') }}

@endif @if (count($courses) == 0)

{{ __('NO COURSE CONTENT FOUND FOR ') . $language->name . '!' }}

@else @php $position = $currencyInfo->base_currency_symbol_position; $symbol = $currencyInfo->base_currency_symbol; @endphp
@foreach ($courses as $course) @endforeach
{{ __('Title') }} {{ __('Category') }} {{ __('Instructor') }} {{ __('Price') }} {{ __('Status') }} {{ __('Featured') }} {{ __('Actions') }}
{{ $course->title }} {{ $course->category }} {{ $course->instructorName }} @if ($course->pricing_type == 'free') {{ __('Free') }} @else {{ $position == 'left' ? $symbol : '' }}{{ $course->current_price }}{{ $position == 'right' ? $symbol : '' }} @endif
@csrf
@csrf
@endif
@endsection