@extends('layouts.app') @section('title', 'Podcasts') @section('page-title', 'Podcasts') @section('breadcrumb', 'More Products / Podcasts') @push('styles') @endpush @section('content')
Back

Manage audio podcasts for your institute catalog.

Create Podcast
@if($podcasts->count())
@foreach($podcasts as $podcast) @endforeach
Title Price Security Status Created Actions
{{ $podcast->title }} {{ $podcast->is_free ? 'Free' : '₹'.number_format($podcast->price, 0) }} {{ $podcast->contentSecurityLabel() }} {{ ucfirst($podcast->status) }} {{ $podcast->created_at->format('M d, Y') }}
@else @endif
@endsection @push('scripts') @if($podcasts->count()) @endif @endpush