@extends('layouts.app') @section('title', __('Payments & Receipts')) @section('content')
| {{ __('Date') }} | {{ __('Type') }} | {{ __('Party') }} | {{ __('Category') }} | {{ __('Amount') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $transaction->transaction_date->format('Y-m-d') }} | {{ __(ucfirst($transaction->type)) }} | {{ $transaction->customer?->name ?? $transaction->party_name ?: '-' }} | {{ $transaction->category }} | {{ number_format($transaction->amount,2) }} {{ $transaction->currency_code }} | |
| {{ __('No general transactions yet.') }} | |||||