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

Clinic Events

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