@extends("layouts.app_new") @section("title") Course view @endsection @section("content")

{{$course->name}}

@if($courseEnrolled == 0 ) Enroll me for this course @else

{{$studentCreditHoursFinished}}/{{$course->credit_hours}}

Already Enrolled.

@endif

{{$course->brief}}

image

What you'll learn

    @foreach($course->what_you_will_learn as $what_you_will_learn)
  • {{$what_you_will_learn}}
  • @endforeach

{!!$course->description!!}
@include("user.courses.partials.courseSyllabus",["course"=>$course,"courseEnrolled"=>$courseEnrolled,"courseQuiz"=>$courseQuiz,"openQuizIfexists"=>$openQuizIfexists ])
@endsection @section("script") @endsection