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.
23 lines
571 B
23 lines
571 B
<?php
|
|
|
|
return [
|
|
'coa' => [
|
|
'code' => 'Account Code',
|
|
'name' => 'Account Name',
|
|
'classification' => 'Classification',
|
|
'status' => 'Status',
|
|
],
|
|
'invoice' => [
|
|
'name' => 'Payer Name',
|
|
'type' => 'Invoice Type',
|
|
'amount' => 'Invoice Amount',
|
|
'client_name' => 'Client Name',
|
|
'status' => 'Status',
|
|
],
|
|
'product_mapping' => [
|
|
'code' => 'Product Code',
|
|
'name' => 'Product Name',
|
|
'coa_name' => 'Account Name (COA)',
|
|
'client_name' => 'Client Name',
|
|
],
|
|
];
|
|
|