@extends('layouts.app')
@section('title', $episode->title . ' - ' . $content->title)
@section('content')
{{ $episode->title }}
Season {{ $season->season_number }} Episode {{ $episode->episode_number }}
@if($prevEpisode)
Previous
@endif
@if($nextEpisode)
Next
@endif
@push('styles')
@endpush
@push('scripts')
@endpush
@endsection