@extends('index') @section('content') @include('podcast.channel.nav', ['channel' => $channel])
{{ $channel->title}}
@include('commons.episode', ['episodes' => $channel->episodes])
{!! Advert::get('sidebar') !!}
@-include('commons.activity', ['activities' => $channel->activities, 'type' => 'full'])
@if(config('settings.channel_comments') && $channel->allow_comments) @include('comments.index', ['object' => (Object) ['id' => $channel->id, 'type' => 'App\Models\Playlist', 'title' => $channel->title]]) @else

Comments are turned off.

@endif
@if(isset($channel->related) && count($channel->related))

{{ __('web.OTHER_PLAYLISTS') }}

    @include('commons.channel', ['channels' => $channel->related, 'element' => 'search'])
@endif
@endsection