@extends('layouts.front') @section('content') @if (Session::has('msg_error'))
{{ Session::get('msg_error') }}
@endif @if (Session::has('msg_error1'))
{{ Session::get('msg_error1') }}
@endif

Take Your Lesson now

Take one of the content materials that have been displayed in the system by pressing the take button.

@foreach ($courses as $course)

{{ $course->course_name }}

{{ substr($course->description, 0, 100) }}
{{ $course->lessons->count() }} Lessons {{ $course->student_courses->count() }} Students
@endforeach
@endsection