Files
symfonycast.local/resources/views/course/index.blade.php
2022-08-23 08:09:14 +02:00

15 lines
392 B
PHP

<x-layout>
<h1>
{{ $course->name }}
</h1>
<table class="table">
@foreach($course->chapters()->get() as $chapter)
<tr>
<td><a href="{{ route('course.chapter', ['chapter' => $chapter->id]) }}">{{ $chapter->title }}</a></td>
<td>{{ $chapter->duration }}</td>
</tr>
@endforeach
</table>
</x-layout>