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

{{ $module }}

@if($permission['create']) Add Evaluation Type @endif @if($permission['destroy']) Delete Selected @endif
{{-- Filters Section - Hidden (simplified form) --}}
@if($permission['edit'] || $permission['destroy']) @endif @forelse($data ?? [] as $row) @if($permission['edit'] || $permission['destroy']) @endif @empty @endforelse
{{ __('Sort') }} {{ __('Tenant') }} {{ __('Evaluation Type Name') }} {{ __('Short Name') }} {{ __('Description') }} {{ __('Duration') }} {{ __('Sort Order') }}{{ __('Action') }}
Drag
{{ $row->tenant->name ?? 'N/A' }} {{ $row->service_name }} {{ $row->short_name_of_service ?? '-' }} {{ Str::limit($row->description, 50) ?? '-' }} {{ $row->duration ?? 0 }} min
@if($permission['edit']) @endif @if($permission['destroy']) {!! html()->form('DELETE', route( $routePrefix . '.destroy', [$row->id] ))->attributes([ 'style' => 'display:inline', 'id' => 'delete-form-' . $row->id ])->open() !!} {!! html()->form()->close() !!} @endif

{{ __('No Evaluation Types Found') }}

@if(isset($data) && method_exists($data, 'links')) @endif
@endsection @push('page_script') @endpush