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

Clinic Blogs

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