| Name |
Status |
Action |
@foreach($certificateTypes as $certificateType)
| {{ $certificateType->name }} |
{{ $certificateType->status ? 'Active' : 'Inactive' }} |
@can('update-user')
@endcan
@can('destroy-user')
{!! Form::open(['route' => ['certificate-types.destroy', $certificateType], 'method' => 'delete', 'class'=>'d-inline-block dform']) !!}
{!! Form::close() !!}
@endcan
|
@endforeach
{{ $certificateTypes->links() }}