@extends('layouts.admin-layout')
@section('title', 'All Podcasts')
@section('content')
Podcast Section
| S.N. |
title |
Image |
Action |
@foreach ($get_podcasts as $pod)
| {{ $loop->iteration }} |
{{ $pod->title ?: '' }} |
|
|
@endforeach
@endsection
@section('script')
@endsection