{{-- filepath: c:\xampp\htdocs\medicpro_finan\resources\views\pdf\libro_diario.blade.php --}}
| FECHA | TM | PROYECTO | UP | CUENTA | DESCRIPCIÓN | DEBE | HABER |
|---|---|---|---|---|---|---|---|
| {{ $tx['fecha'] }} | {{ is_numeric($tx['tm']) ? 'TM'.$tx['tm'] : $tx['tm'] }} | {{ $tx['proyecto_programa'] ?? '' }} | {{ $tx['unidad_presupuestaria'] ?? '' }} |
{{ $tx['cuenta'] ?? '' }}
@if(!empty($tx['subcuenta'])) {{ $tx['subcuenta'] }}@endif |
{{ $tx['concepto'] ?? '' }} | ${{ number_format($tx['debe'], 2) }} | ${{ number_format($tx['haber'], 2) }} |
| TOTAL | ${{ number_format($partida['totalDebe'], 2) }} | ${{ number_format($partida['totalHaber'], 2) }} | |||||