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

Doctor Events

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