@if ($cfg['show_category'] ?? false)
| {{ display_text($cfg['category_options'][$row->category] ?? $row->category ?? '—') }} |
@endif
@if ($cfg['show_parent'] ?? false)
{{ display_text($cfg['parent_options'][$row->parent_id] ?? ($row->parent?->name ?? '—')) }} |
@endif
@if ($cfg['show_code'] ?? false)
{{ $row->code }} |
@endif
{{ $displayName }}
|
@if ($cfg['show_sort_order'] ?? false)
{{ $row->sort_order ?? '—' }} |
@endif
@if($row->status)
Active
@else
Inactive
@endif
|
{{ optional($row->created_at)->format('d M Y') }} |
@endforeach