@extends('app') @section('title', 'Chapter ') @section('head') @endsection @section('content')
@foreach ($courses->chapters as $chapters) @if($chapters->getAttributes()['chapter_id'] == $chapter->chapter_id)

CHAPTER # {{ $i }}

@break @endif @endforeach

{{ $chapter->name }}

@if($courses->timer == 1)

Chapter Time: {{ $chapter_progress }}:00

@endif
{!! $chapter->description !!}
@if(count($chapter_attachment) > 0)
@foreach ($chapter_attachment as $video) @if($video->type == 1 ) @endif @endforeach
@foreach ($chapter_attachment as $audio) @if($audio->type == 2)

@endif @endforeach
@endif
BACK TO PROFILE @if($previous_chapter) Previous Chapter @endif @if($next_chapter) Next Chapter @else Take Exam @endif
@endsection @section('foot')