@extends('layouts.app') @push('css') @endpush @section('content')
@php $moduleId = request()->query('module_id'); $contentId = request()->query('content_id'); $firstVideo = null; $class_note = null; $class_title = null; $class_des = null; // Try to get video from URL parameters first if ($moduleId && $contentId) { $module = $course->module->where('id', $moduleId)->where('status', 1)->first(); if ($module) { $content = $module->moduleContent->where('id', $contentId)->where('status', 1)->first(); if ($content && $content->content_type == 'video') { $firstVideo = $content->content_url; $class_note = $content->class_note ?? null; $class_title = $content->title ?? null; $class_des = $content->description ?? null; } } } // If no URL video found, fallback to first available video if (!$firstVideo) { foreach ($course->module->where('status', 1) as $module) { foreach ($module->moduleContent->where('status', 1) as $content) { if ($content->content_type == 'video') { $firstVideo = $content->content_url; $class_note = $content->class_note ?? null; $class_title = $content->title ?? null; $class_des = $content->description ?? null; $moduleId = $module->id; $contentId = $content->id; break 2; // stop after first video } } } } @endphp @if (!$firstVideo) @endif

{{ $class_title }}

{{ $class_des }}

{{ __('dashboard.class_note') }}

PDF Icon
{{ $class_title }} Download Icon

কোর্স ফি কোনোভাবেই রিফান্ড করা হবেনা এবং ফেইসবুক আইডি চেইঞ্জ করা যাবেনা। কোর্সটির যেকোনো ফিচার,বৈশিষ্ট্য পরিবর্তন ও পরিমার্জিত করার অধিকার শিক্ষা পয়েন্ট কতৃপক্ষের থাকবে।

নোটঃ

কোর্স সিলেবাস

@include('page.user-dashboard.learn.syllabus')

কোর্স সিলেবাস

@include('page.user-dashboard.learn.syllabus')
@push('js') @endpush @endsection