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

Podcast Category

Name

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

Image

@if ($podcast_category->image) {{ $podcast_category->slug }} @else -- @endif

Status

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

Created At

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

Description

{!! $podcast_category->description !!}

@endsection @section('scripts') @endsection