@props([ 'titulo' => 'Detalhamento do Pagamento', 'icon' => 'currency-dollar', 'carrinho' => [], ]) @if (!empty($carrinho['itens'] ?? []))
{{-- Header --}}

{{ $titulo }}

{{-- Itens --}}
@foreach ($carrinho['itens'] as $item)

{{ $item['Description'] ?? '---' }}

@if (($item['Quantity'] ?? 1) > 1)

Qtd: {{ $item['Quantity'] }}

@endif
{{ ($item['UnitPrice'] ?? false) ? convertMoney($item['UnitPrice'], 'R$ ') : '---' }}
@endforeach {{-- Total --}} @if ($carrinho['total'] ?? false)
{{ $carrinho['total']['Description'] ?? 'Valor Total' }}
{{ ($carrinho['total']['UnitPrice'] ?? false) ? convertMoney($carrinho['total']['UnitPrice'], 'R$ ') : '---' }}
@endif
@endif