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

Doctor Educations

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