@extends('layouts.master') @section('title', 'Supplier Journal Report - ') @section('content')
Monitor supplier transactions and invoices
| Date | Supplier Code | Supplier Name | Description | Debit | Credit | Status | Currency |
|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($entry->date)->format('M d, Y') }} | {{ $entry->supplier_code ?? 'N/A' }} | {{ $entry->supplier_name ?? 'N/A' }} | {{ $entry->narration }} | {{ $debit > 0 ? '$' . number_format($debit, 2) : '-' }} | {{ $credit > 0 ? '$' . number_format($credit, 2) : '-' }} | {{ $entry->status ?? 'pending' }} | {{ $entry->currency_name ?? 'N/A' }} |
No supplier journal entries match your selected criteria. Try adjusting your filters.
Please select date range and currency to generate the supplier journal report.