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

Doctor Experiences

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