mirror of
https://github.com/grocy/grocy.git
synced 2026-03-27 23:29:25 +01:00
16 lines
307 B
PHP
16 lines
307 B
PHP
@push('componentScripts')
|
|
<script src="{{ $U('/viewjs/components/userfieldsform.js', true) }}?v={{ $version }}"></script>
|
|
@endpush
|
|
|
|
@if(count($userfields) > 0)
|
|
|
|
@foreach($userfields as $userfield)
|
|
|
|
@if($userfield->show_as_column_in_tables == 1)
|
|
<th>{{ $userfield->name }}</th>
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
@endif
|