@php $simboloMoeda = \App\Helpers\MoneyHelper::simboloMoeda($venda->moeda ?? 'BRL'); @endphp
| # | {{ __('vendas.label_service_type') }} | {{ __('vendas.label_description') }} | {{ __('vendas.label_quantity') }} | {{ __('vendas.label_unit') }} | {{ __('vendas.label_unit_price') }} | {{ __('vendas.label_subtotal') }} |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->servico->nome ?? $item->descricao }} | {{ $item->descricao }} | {{ (int)$item->quantidade }} | {{ $item->unidade }} | {{ $simboloMoeda }} {{ number_format($item->valor_unitario, 2, ',', '.') }} | {{ $simboloMoeda }} {{ number_format($item->valor_total ?? ($item->quantidade * $item->valor_unitario), 2, ',', '.') }} |
| {{ __('vendas.label_no_sales') }} | ||||||