@extends('layouts.admin.layout') @section('content')

{{ $sermon_id->title }} — Links

@include('partials.message')
@foreach ($sermons as $index => $sermon) @endforeach
# Chapter Title Date Video Audio PDF Action
{{ $sermons->firstItem() + $index }} {{ $sermon->title ?: '—' }} {{ $sermon->date ? date('d M Y', strtotime($sermon->date)) : '—' }} @if ($sermon->video_link) Watch @else @endif @if ($sermon->audio_link) Listen @else @endif @if ($sermon->pdf_link) Download @else @endif Edit Delete
{{ $sermons->links() }}
@endsection @push('scripts') @endpush