@extends('admin.layouts.app') @section('content')

{{ __('podcaststatistics.viewpagetitle') }}

{{ __('common.back') }}

Name: {{ $podcast->content->podcast_title }}

Author: {{ $podcast->content->provider_name }}

Speakers:@if(!$podcast->content->speakers->isEmpty())@foreach ($podcast->content->speakers as $key => $speaker) @if($speaker->speaker->status == 1) {{ optional($speaker->speaker)->name ?? '' }} @if ($key !== count($podcast->content->speakers) - 1 && $speaker->speaker->status == 1 && count($podcast->content->speakers) > 1) , @endif @endif @endforeach @endif

Length: {{ $podcast->content->lengthOfPodcast() }} mins

Size: {{ $podcast->content->sizeOfPodcast() }} MB

Total Play Count : {{ $podcast->calculateTotalPlays() }}

{{--
--}}
@foreach ($podcast->content->contentFiles as $index => $episode) @if ($episode->episodeStats()->isNotEmpty())

Episode : {{ $episode->view_file_name }}

@foreach ($episode->episodeStats() as $stats) @endforeach
Site Name Android iOS Web Home Page Library Browser IP Address
{{ $stats->site_name }} {{ $stats->android }} {{ $stats->iphone }} {{ $stats->web }} {{ $stats->home_page }} {{ $stats->library }} {{ $stats->browser }} {{ $stats->ipaddress }}
@endif @endforeach {{--
--}} {{-- --}}
@endsection