Jump back in
@if ($listenable_progress_items->count())
@foreach($listenable_progress_items as $item)
@php
if (!$item->listenable) {
continue;
}
$type = $item->listenable_type === \App\Models\PodcastEpisode::class?'podcast':'audioSeries';
$text = !empty($item->listenable->episode_data->subtitle) ? $item->listenable->episode_data->subtitle : $item->listenable->intro;
@endphp
@endforeach
@else
No recently played items
@endif
Your subscriptions
@if ($subscriptions->count())
@foreach($subscriptions as $subscription)
@php
$subscribeable = $subscription->subscribeable;
@endphp
@endforeach
View all subscriptions
@else
No subscriptions added yet
@endif