@extends("admin.admin_app") @section("content")

{{ ucfirst($model) }} List

All Records for {{ ucfirst($model) }}

@foreach($resTypes as $i => $type) @endforeach @if($resTypes->isEmpty()) @endif
S.No. Name Status Actions
{{ $i + 1 }} {{ $type->name ?? 'N/A' }} @php $active = isset($type->is_active) ? $type->is_active : (isset($type->status) ? $type->status : 0); @endphp {{ $active ? 'Active' : 'Inactive' }}
No records found for {{ ucfirst($model) }}.
@endsection