@extends('super_admins.layouts.master') @section('title') Podcast Categories @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content')

Podcast Categories

@php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp Export Add
@foreach ($podcast_categories as $podcast_category) @endforeach
Name Image Created at Status Action
{{ $podcast_category->name }} @if ($podcast_category->image) {{ $podcast_category->slug }}     @else - @endif {{ date_format($podcast_category->created_at, 'd-m-Y') }} {{ $podcast_category->is_active ? 'Active' : 'Inactive' }} @if (!$podcast_category->trashed())
{{-- edit --}} {{-- delete --}}
@else
{{-- restore --}} {{-- delete permanently --}}
@endif
@endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection