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

Therapist Podcast

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