@extends('layouts.site') @section('title', $course->title . ' | XRD LAB') @push('styles') @endpush @section('content')
@include('partials.breadcrumbs', [ 'items' => [ ['label' => 'الرئيسية', 'url' => route('home')], ['label' => 'الدورات', 'url' => route('courses')], ['label' => $course->title], ], ])
{{ $course->title }}

المستوى: {{ $course->level }} | النوع: {{ $course->course_type }} | المدة: {{ $course->duration_minutes ? $course->duration_minutes . ' دقيقة' : 'غير محددة' }}

{{ $course->title }}

@if(! $course->is_paid) هذه الدورة مجانية @elseif($course->hasActiveDiscount()) خصم {{ $course->discountPercent() }}% السعر الحالي: {{ number_format($course->currentPrice(), 0) }} {{ $course->currency }} بدلاً من {{ number_format($course->originalPrice(), 0) }} {{ $course->currency }} @else السعر: {{ number_format($course->currentPrice(), 0) }} {{ $course->currency }} @endif

@if($course->access_type === 'login_required') تتطلب هذه الدورة تسجيل الدخول لمتابعة التقدم{{ $course->has_certificate ? ' وإصدار شهادة الإتمام' : '' }}{{ $course->is_paid ? '، كما يلزم إتمام التسجيل أو السداد قبل الوصول الكامل إلى المحتوى.' : '.' }} @else هذه الدورة متاحة للاستعراض العام{{ $course->is_paid ? '، وقد تتطلب إتمام التسجيل أو السداد للاستفادة الكاملة منها.' : '.' }} @endif

{{ $course->excerpt }}

{{ $course->description ?: 'سيتم إضافة وصف الدورة الكامل قريباً.' }}

@if($course->instructors->isNotEmpty())
المدربون: {{ $course->instructors->pluck('name')->join('، ') }}
@endif @if($course->lessons->isNotEmpty())
عدد الدروس: {{ $course->lessons->count() }}
@endif
@endsection