@extends('layout.app') @section('title', 'Lecture Page') @section('content')
@if (session('success')) @endif @if (session('error')) @endif

{{ $lecture->title }}

{{--

{{ $lecture->description }}

--}}
{{-- Instructor Name --}}
Created by
{{ $lecture->teacher->name }}

Lecture details

{{ $lecture->description }}

What you'll learn

{!! $lecture->what_learn !!}
Zoom Link (Lecture will start at {{ \Carbon\Carbon::parse($lecture->start_time)->format('l, F j, Y h:i A') }})
@php // حساب وقت انتهاء الحصة $endTime = \Carbon\Carbon::parse($lecture->start_time)->addMinutes($lecture->duration); @endphp @if (\Carbon\Carbon::parse($lecture->start_time)->isFuture()) @if ($lecture->lecture_zoom) Click here to join the Zoom meeting @else @endif @elseif (\Carbon\Carbon::now()->greaterThanOrEqualTo($endTime)) @if ($lecture->lecture_video)
Click me to watch the video!
@else @endif @else @endif
@endsection