@extends('user.layout') @section('content')
{{ __("Courses") }} ( {{ $language->name . ' ' . __('Language') }} )
@includeIf('user.partials.languages')
{{ __("Add_Course") }}
@if (count($courses) == 0)

{{ __("NO_COURSE_FOUND") }}

@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