@extends('index') @section('content') @include('podcast.nav', ['podcast' => $podcast])
{{ $podcast->title }}
{{ $podcast->title }}

{{ $podcast->title }}

@if(!$podcast->visibility){{ __('web.PRIVATE') }}@endif
@if(! auth()->check() || (auth()->check() && isset(auth()->user()->artist_id) && auth()->user()->artist_id != $podcast->artist->id)) @if($podcast->favorite) {{ __('web.PLAYLIST_UNSUBSCRIBE') }} @else {{ __('web.PLAYLIST_SUBSCRIBE') }} @endif @endif
{{ $podcast->episodes->total() }} {{ __('web.EPISODES') }}
Report
{{ $podcast->description }}
@if($podcast->allow_comments) @include('comments.index', ['object' => (Object) ['id' => $podcast->id, 'type' => 'App\Models\Podcast', 'title' => $podcast->title]]) @else

Comments are turned off.

@endif

{{ $podcast->title }}

@if(!$podcast->visibility){{ __('web.PRIVATE') }}@endif
@if(! auth()->check() || (auth()->check() && isset(auth()->user()->artist_id) && auth()->user()->artist_id != $podcast->artist->id)) @if($podcast->favorite) {{ __('web.PLAYLIST_UNSUBSCRIBE') }} @else {{ __('web.PLAYLIST_SUBSCRIBE') }} @endif @endif
@include('commons.episode', ['episodes' => $podcast->episodes, 'element' => 'genre'])
@endsection