|
|
{{ $index }}
|
{{ $material->name }}
@if($material->description)
{{ Str::limit($material->description, 50) }}
@endif
@if($material->is_primary_group)
@endif
|
{{ $material->control_type_label }}
@if($material->control_label)
{{ $material->control_label }}
@endif
@if($material->control_options && count($material->control_options) > 0)
{{ count($material->control_options) }} option(s)
@endif
|
@if(isset($material->groupCategory) && $material->groupCategory)
{{ $material->groupCategory->name }}
@else
No Group
@endif
|
{{ $material->display_in_reports_text }}
@if($material->auto_add_to_reports)
Auto Add
@endif
|
{{ $material->is_active ? 'Active' : 'Inactive' }}
|
|