MENGE
{{ $pos->quantity ? number_format($pos->quantity, 2, ',', '.') : '—' }}
ME
{{ $pos->positionUnit->name ?? '—' }}
E-PREIS €
{{ $pos->unit_price ? number_format($pos->unit_price, 2, ',', '.') : '—' }}
G-PREIS €
@php $gprice = (float)$pos->quantity * (float)$pos->unit_price; @endphp
{{ $gprice > 0 ? number_format($gprice, 2, ',', '.') : '—' }}