@extends("layouts.public") @section("title",$lesson->name) @section("keywords"," material, questions, answers, make-it.co") @if($lesson->type=="Text") @section("description",preg_replace('#<[^>]+>#', ' ', $lesson->introduction )) @else @section("description",preg_replace('#<[^>]+>#', ' ', $lesson->description )) @endif @section("author",$lesson->instructor->name ?? "make-it.co") @section("css") @endsection @section("content")

{{ucwords($lesson->name)}}

@if($lesson->type=="Text")

{!! $lesson->introduction ?? "No introduction click on the Content section" !!}

@else

{!! $lesson->description ?? "No introduction click on the Content section" !!}

@endif @if($lesson->type=="File")

Download file below


Click here to download - {{$lesson->name ?? "Unknown file"}}

@endif

Lesson Price

{{$lesson->price ?? "0"}}F

Readers

{{$lesson->readings->count()}}

Level

{{$lesson->level->name ?? "All"}}

Category or Subject

{{$lesson->category->name ?? "All"}}

@endsection