32 lines
765 B
PHP
32 lines
765 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'accounts' => [
|
|
'cash' => 'Cash',
|
|
],
|
|
|
|
'categories' => [
|
|
'deposit' => 'Deposit',
|
|
'sales' => 'Sales',
|
|
],
|
|
|
|
'currencies' => [
|
|
'usd' => 'US Dollar',
|
|
],
|
|
|
|
'offline_payments' => [
|
|
'cash' => 'Cash',
|
|
'bank' => 'Bank Transfer',
|
|
],
|
|
|
|
'reports' => [
|
|
'income' => 'Monthly income summary by category.',
|
|
'expense' => 'Monthly expense summary by category.',
|
|
'income_expense' => 'Monthly income vs expense by category.',
|
|
'tax' => 'Quarterly tax summary.',
|
|
'profit_loss' => 'Quarterly profit & loss by category.',
|
|
],
|
|
|
|
];
|