@extends('layouts.app') @section('title', $app_setting['name'] . ' | Chapter List') @section('content')

Showing chapters for: {{ $course->title }}

@foreach ($chapters as $chapter) @endforeach
# Chapter Title Sequence Number of Contents Action
{{ $loop->iteration }} @if (strlen($chapter->title) > 50) {{ substr($chapter->title, 0, 50) . '...' }} @else {{ $chapter->title }} @endif {{ $chapter->serial_number }} {{ $chapter->contents->count() }}
@endsection