@extends('admin.layouts.layouts') @section('content')

Course Details

Assign Session

Title: {{ $curriculumSession->title }}

Arabic Title: {{ $curriculumSession->title_ar }}

Language: {{ $curriculumSession->language }}

Arabic Language: {{ $curriculumSession->language_ar }}

Rating: {{ $curriculumSession->rating }}

@if ($curriculumSession->image) Course Image @endif

Details Session

@if ($onlineSessions->isNotEmpty()) @foreach ($onlineSessions as $session)

Price: {{ $session->price }}

Duration (weeks): {{ $session->duration }}

Lessons: {{ $session->lessons }}

Language: {{ $session->language_details == 'en' ? 'English' : 'Arabic' }}

Certificate: {{ $session->certificate }}

Arabic Certificate: {{ $session->certificate_ar }}

@if ($session->image) Details Image @endif
@endforeach @else

No online sessions found.

@endif

Videos Session

@if ($videos->isNotEmpty()) @foreach ($videos as $video)

Video URL: {{ $video->videos }}

@if ($video->video_image) Video Image @endif
@endforeach @else

No videos found.

@endif

Overview

@if ($overviews->isNotEmpty()) @foreach ($overviews as $overview)

Description: {{ $overview->description }}

Arabic Description: {{ $overview->description_ar }}

Other Description: {{ $overview->description_two }}

Arabic Other Description: {{ $overview->description_two_ar }}

@endforeach @else

No overview found.

@endif
{{--

Topic

@if ($topics->isNotEmpty()) @foreach ($topics as $topic)

Title: {{ $topic->title }}

Arabic Title: {{ $topic->title_ar }}

Description: {{ $topic->description }}

Arabic Description: {{ $topic->description_ar }}

@endforeach @else

No topics found.

@endif

Topic Course Information

@if ($topicInformation->isNotEmpty()) @foreach ($topicInformation as $topicInfo)

Title: {{ $topicInfo->title }}

Arabic Title: {{ $topicInfo->title_ar }}

Time: {{ $topicInfo->time }}

@endforeach @else

No topic course information found.

@endif

Question & Answer

@if ($topicQuestions->isNotEmpty()) @foreach ($topicQuestions as $topicQues)

Question: {{ $topicQues->question }}

Arabic Question: {{ $topicQues->question_ar }}

Answer: {{ $topicQues->answer }}

Arabic Answer: {{ $topicQues->answer_ar }}

@endforeach @else

No questions found.

@endif
--}} Back to List
@endsection