mirror of
https://github.com/grocy/grocy.git
synced 2025-11-02 03:27:48 +00:00
13 lines
327 B
PHP
13 lines
327 B
PHP
|
|
@if(count($userfields) > 0)
|
||
|
|
|
||
|
|
@foreach($userfields as $userfield)
|
||
|
|
|
||
|
|
@if($userfield->show_as_column_in_tables == 1)
|
||
|
|
@php $userfieldObject = FindObjectInArrayByPropertyValue($userfieldValues, 'name', $userfield->name) @endphp
|
||
|
|
<td>@if($userfieldObject !== null){{ $userfieldObject->value }}@endif</td>
|
||
|
|
@endif
|
||
|
|
|
||
|
|
@endforeach
|
||
|
|
|
||
|
|
@endif
|