@extends('super_admins.layouts.master') @section('title') View Podcast @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Podcast

Name

{{ $podcast->name ? $podcast->name : '--' }}

File
@if($podcast->link_type == 'internal')

@if($podcast->file_type == 'audio') @else @endif

@else

@if($podcast->file_url) File Url @endif

@endif
Status

{{ $podcast->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($podcast->created_at, 'd-m-Y') }}

Description

{!! $podcast->description !!}

@endsection @section('scripts') @endsection