@extends('pdf.layouts.app') @section('title', 'Daily Journal Report') @section('styles') @endsection @section('content')
| # | Number | Date | Account | Name | Debit | Credit | @if(!$ShowByDefault)Currency Transfer Rate | @endif
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item['constraint_number_doc'] ?? '-' }} | {{ isset($item['date']) ? \Carbon\Carbon::parse($item['date'])->format('d/m/Y') : '-' }} | {{ $item['tree_accounting_title'] ?? '-' }} | {{ $item['constraint_name'] ?? '-' }} | {{ number_format($item['debit'] ?? 0, 2) }} | {{ number_format($item['creditor'] ?? 0, 2) }} | @if(!$ShowByDefault){{ $item['currency_transfer_rate'] ?? '-' }} | @endif
| Total Debit | Total Credit |
|---|---|
| {{ number_format($summary['total_debit'] ?? 0, 2) }} | {{ number_format($summary['total_creditor'] ?? 0, 2) }} |
No data available for this report.
@endif