{{ __('site.page_pods_h1') }}
{{ __('site.page_pods_subtitle') }}
{!! session('success') !!}
@endif
@if (session('error'))
{!! session('error') !!}
@endif
@if($allPodcasts->count() == 0)
@else
{{ __('site.page_pods_none_found') }}
@if($s || $catFilter) {{ __('site.page_pods_clear_filters') }} @endif
@foreach($allPodcasts as $podcast)
@php
$epsCount = DB::connection('mysql_site_' . session('serverID'))->table('podcasts_eps')->where('podcast_id','=',$podcast->id)->count();
@endphp
@endforeach
Podcast
{{ $podcast->name }}
Eps
{{ $epsCount }}
Views
{{ number_format($podcast->views ?? 0, 0, ',', '.') }}
{{ __('general.table_status') }}
{{ $podcast->status == '1' ? __('general.status_active') : __('site.status_inactive') }}
{{ $allPodcasts->links('vendor.pagination.bootstrap-5') }}
@endif