@section('title', 'Over view') @push('script') @endpush @section('toolbar') @endsection @include('course::admin.course.courseInfo', ['activeMenu' => 'overview', 'course' => $course])
Overview
@foreach ($languages as $id => $language) @php $languageCode = strtolower($language->code); // Assuming $language is an object with a 'code' attribute $isArabic = strtolower($language->name) === 'ar'; $localeContent = isset($coursesLocale[$languageCode]) ? $coursesLocale[$languageCode]->first() : null; @endphp
@endforeach @if ($seo != null)
@endif
@if ($course->title)
{{ $course->title }}
@endif @if ($course->thumbnail_alt)
{{ $course->thumbnail_alt }}
@endif @if ($course->section)
{{ $course->section }}
@endif @if ($course->code)
{{ $course->code }}
@endif @if ($course->short_description)
{!! $course->short_description !!}
@endif @if ($course->language)
{{ $course->language }}
@endif @if ($course->pricing_format)
{{ $course->pricing_format }}
@endif @if ($course->duration_type)
{{ $course->duration_type }}
@endif @if ($course->start_date)
{{ $course->start_date }}
@endif @if ($course->certifications)
{!! $course->certifications !!}
@endif @if ($course->description)
{!! $course->description !!}
@endif
@if ($course->mode_of_learning)
@foreach ($course->mode_of_learning as $mode) {{ $mode }} @endforeach
@endif @if ($course->course_format)
{{ $course->course_format }}
@endif @if ($course->pricing_format != 'free')
{{ $course->fee }}
@endif @if ($course->course_completion_criteria)
{{ $course->course_completion_criteria }}
@endif @if ($course->duration)
{{ $course->duration }}
@endif @if ($course->certification)
@if ($course->certification == 1) Yes @else No @endif
@endif @if ($course->started)
@if ($course->started == 'yes') Yes @else No @endif
@endif @if ($course->introduction)
{!! $course->introduction !!}
@endif @if ($course->who_should_attend)
{!! $course->who_should_attend !!}
@endif @if ($course->outcomes)
{!! $course->outcomes !!}
@endif