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

Doctor Podcast

@foreach ($doctor_podcasts as $doctor_podcast) @endforeach
Name Image Created at Status Action
{{ $doctor_podcast->name }} @if ($doctor_podcast->image) {{ $doctor_podcast->slug }}     @else - @endif {{ date_format($doctor_podcast->created_at, 'd-m-Y') }} {{ $doctor_podcast->is_active ? 'Active' : 'Inactive' }} @if (!$doctor_podcast->trashed())
{{-- edit --}} {{-- delete --}}
@else
{{-- restore --}} {{-- delete permanently --}}
@endif
@endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection