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

Welcome to your podcast dashboard

@if(request('sort')) @endif @if(request('status')) @endif
Create
Filters
@if(request('search')) @endif
@if($podcasts->count())
@foreach($podcasts as $podcast) @endforeach
Title Price Security Status Created Actions
{{ $podcast->title }} @if($podcast->is_free) Free @else ₹{{ number_format($podcast->price, 0) }} @endif {{ $podcast->contentSecurityLabel() }} {{ ucfirst($podcast->status) }} {{ $podcast->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $podcasts->links() }}
@else

No results found

Create your first podcast to get started.

Create
@endif
@endsection