@extends('layout.main') @section('title', 'Audit Tagihan') @section('prev-page') Home @endsection @section('content') @php $panel_colapse = !empty($input->key) || !empty($input->account) || isset($input->status) ? '' : 'panel-collapsed'; @endphp
Cari Berdasarkan
@csrf
Summary Akun
@forelse ($summary as $row) @empty @endforelse
Akun Kredit Debet Saldo Unverified Verified
{{ $row->account->name }} Rp{{ number_format($row->kredit, 0, ',', '.') }} Rp{{ number_format($row->debet, 0, ',', '.') }} Rp{{ number_format($row->balance, 0, ',', '.') }} {{ $row->unverified }} {{ $row->verified }}
Belum ada data.
Daftar Tagihan
@if (!empty($input->account)) @else @endif
@forelse ($invoices as $invoice) @empty @endforelse
Tanggal No Faktur Keterangan Debet Kredit Saldo Status ID Transaksi Nilai Selisih  
@if ($invoice->status->id == 0) @endif {{ date_format(date_create($invoice->date), 'd M Y') }} {{ $invoice->invoice_number }} {{ $invoice->description ?: '-' }} {{ $invoice->type->id == 2 ? 'Rp' . number_format($invoice->amount, 0, ',', '.') : '-' }} {{ $invoice->type->id == 1 ? 'Rp' . number_format($invoice->amount, 0, ',', '.') : '-' }} Rp{{ number_format($invoice->balance, 0, ',', '.') }} {{ $invoice->status->name }} @if (count($invoice->transactions) > 1) {{ count($invoice->transactions) }} Transaksi @elseif (count($invoice->transactions) == 1) {{ $invoice->transactions[0]->number }} @else - @endif {{ count($invoice->transactions) ? 'Rp' . number_format($invoice->linked_amount, 0, ',', '.') : '-' }} {{ !is_null($invoice->difference) ? 'Rp' . number_format($invoice->difference, 0, ',', '.') : '-' }}
Belum ada data.
@if (!empty($metadata->links)) @endif
@endsection @section('other-scripts') @endsection