You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
817 B
32 lines
817 B
<?php
|
|
|
|
return [
|
|
'invoice-status' => [
|
|
'paid' => 'Paid',
|
|
'pending' => 'Pending',
|
|
'partially_paid' => 'Partially Paid',
|
|
'overdue' => 'Overdue',
|
|
],
|
|
'invoice-type' => [
|
|
'customer_invoice' => 'Customer Invoice',
|
|
'vendor_bill' => 'Vendor Bill',
|
|
'credit_note' => 'Credit Note',
|
|
],
|
|
'payment-status' => [
|
|
'pending' => 'Pending',
|
|
'success' => 'Success',
|
|
'failed' => 'Failed',
|
|
'expired' => 'Expired',
|
|
],
|
|
'payment-direction' => [
|
|
'receipt' => 'Receipt',
|
|
'disbursement' => 'Disbursement',
|
|
],
|
|
'account-classification' => [
|
|
'asset' => 'Asset',
|
|
'liability' => 'Liability',
|
|
'equity' => 'Equity',
|
|
'revenue' => 'Revenue',
|
|
'expense' => 'Expense',
|
|
],
|
|
];
|
|
|