@extends('layouts/full') @include('widgets/mediaplayer') @section('title') @if($podcast) {{ $podcast->title }} @elseif($isPodcast) NH Gooi Podcast @else Fragment gemist @endif @endsection @section('page_class') post_container breadcrumb_no_border @endsection @section('breadcrumb') @endsection @push('scripts') @endpush @section('content') @if ($podcast) url . "?auth=" . $podcast->auth); $streamUrl = url($apiUrl . 'podcast/stream' . $podcast->url . "?auth=" . $podcast->auth); $popoutUrl = route('luister.podcast') . $podcast->url . '?auth=' . $podcast->auth; ?>
@include("widgets.audioplayer", [ 'source' => $streamUrl, 'lengte' => $podcast->duration / 1000, 'waveform' => $podcast->waveform ])
@if($podcast->image)
{{$podcast->image->title}}
@endif

{!!$podcast->content!!}

@endif @endsection