$1000:
{{ $corte->billetes_mil ?? 0 }} = ${{ number_format(($corte->billetes_mil ?? 0) * 1000, 2) }}
$500:
{{ $corte->billetes_quinientos ?? 0 }} = ${{ number_format(($corte->billetes_quinientos ?? 0) * 500, 2) }}
$200:
{{ $corte->billetes_doscientos ?? 0 }} = ${{ number_format(($corte->billetes_doscientos ?? 0) * 200, 2) }}
$100:
{{ $corte->billetes_cien ?? 0 }} = ${{ number_format(($corte->billetes_cien ?? 0) * 100, 2) }}
$50:
{{ $corte->billetes_cincuenta ?? 0 }} = ${{ number_format(($corte->billetes_cincuenta ?? 0) * 50, 2) }}
$20:
{{ $corte->billetes_veinte ?? 0 }} = ${{ number_format(($corte->billetes_veinte ?? 0) * 20, 2) }}
Total Billetes:
${{ number_format($corte->importetotalbilletes ?? 0, 2) }}