mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
23 lines
359 B
PHP
23 lines
359 B
PHP
@php
|
|
if (!isset($excludeFieldTypes))
|
|
{
|
|
$excludeFieldTypes = [];
|
|
}
|
|
@endphp
|
|
|
|
@if($userfields && count($userfields) > 0)
|
|
|
|
@foreach($userfields as $userfield)
|
|
|
|
@if(in_array($userfield->type, $excludeFieldTypes))
|
|
@continue
|
|
@endif
|
|
|
|
@if($userfield->show_as_column_in_tables == 1)
|
|
<th class="allow-grouping">{{ $userfield->caption }}</th>
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
@endif
|