File "watchlesson.blade.php"
Full Path: /home/fundopuh/trader.fxex.org/resources/views/millage/user/membership/watchlesson.blade.php
File size: 1.06 KB
MIME-type: text/html
Charset: utf-8
@extends('layouts.millage')
@section('title', $title)
@section('content')
<!-- Page title -->
<div class="page-title mb-5">
<div class="row">
<div class="col-12 d-flex justify-content-between align-items-center">
<h5 class="h3 font-weight-400">{{ $lesson->title }}</h5>
@if ($course)
<a href="{{ route('user.mycoursedetails', ['id' => $course->id]) }}" class="btn btn-primary btn-sm">
<i class="fa fa-arrow-left"></i>
Back
</a>
@endif
</div>
</div>
</div>
<x-danger-alert />
<x-success-alert />
<div class="row">
<div class="col-12">
<p class="text-white">{!! $lesson->desc !!}</p>
</div>
<div class="col-md-12">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="{{ $lesson->videolink }}" allowfullscreen></iframe>
</div>
</div>
</div>
@endsection