2015-05-14 06:00:43 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// all table headers.
|
|
|
|
|
|
|
|
return [
|
|
|
|
'name' => 'Name',
|
|
|
|
'role' => 'Role',
|
|
|
|
'currentBalance' => 'Current balance',
|
|
|
|
'active' => 'Is active?',
|
|
|
|
'lastActivity' => 'Last activity',
|
|
|
|
'balanceDiff' => 'Balance difference between :start and :end',
|
|
|
|
'matchedOn' => 'Matched on',
|
2015-05-14 11:00:56 -05:00
|
|
|
'matchesOn' => 'Matched on',
|
2015-05-14 06:00:43 -05:00
|
|
|
'matchingAmount' => 'Amount',
|
|
|
|
'lastMatch' => 'Last match',
|
|
|
|
'expectedMatch' => 'Expected match',
|
2015-12-23 02:09:51 -06:00
|
|
|
'automatch' => 'Auto match?',
|
2015-05-14 06:00:43 -05:00
|
|
|
'repeat_freq' => 'Repeats',
|
|
|
|
'description' => 'Description',
|
|
|
|
'amount' => 'Amount',
|
|
|
|
'date' => 'Date',
|
|
|
|
'from' => 'From',
|
|
|
|
'to' => 'To',
|
|
|
|
'budget' => 'Budget',
|
|
|
|
'category' => 'Category',
|
|
|
|
'bill' => 'Bill',
|
|
|
|
'withdrawal' => 'Withdrawal',
|
|
|
|
'deposit' => 'Deposit',
|
2015-05-14 08:53:56 -05:00
|
|
|
'transfer' => 'Transfer',
|
|
|
|
'type' => 'Type',
|
2015-05-14 10:52:50 -05:00
|
|
|
'completed' => 'Completed',
|
2015-07-05 01:52:35 -05:00
|
|
|
'iban' => 'IBAN',
|
2015-05-20 12:56:14 -05:00
|
|
|
];
|