@extends('admin.layouts.app') @section('content')

Medical License

@can('medical_license.create') Add New @endcan
@foreach ($medicalLicenses as $key => $medicalLicense) @endforeach
Name Created At Actions
{{ $medicalLicense->name }} {!! strtotime($medicalLicense->created_at) !!} {!! date('m/d/Y H:i:A', strtotime($medicalLicense->created_at)) !!} @can('medical_license.edit') @endcan @can('medical_license.delete')
@csrf @method('DELETE')
@endcan
@endsection @section('footer-js') @endsection