35 lines
899 B
PHP
Raw Normal View History

2018-08-06 10:37:04 +03:00
<?php
return [
2020-02-18 17:13:54 +03:00
'accounts' => [
2022-06-01 10:15:55 +03:00
'cash' => 'Cash',
2020-02-18 17:13:54 +03:00
],
'categories' => [
2022-06-01 10:15:55 +03:00
'deposit' => 'Deposit',
'sales' => 'Sales',
2020-02-18 17:13:54 +03:00
],
'currencies' => [
2022-06-01 10:15:55 +03:00
'usd' => 'US Dollar',
2020-02-18 17:13:54 +03:00
'eur' => 'Euro',
2022-06-01 10:15:55 +03:00
'gbp' => 'British Pound',
'try' => 'Turkish Lira',
2020-02-18 17:13:54 +03:00
],
'offline_payments' => [
2022-06-01 10:15:55 +03:00
'cash' => 'Cash',
'bank' => 'Bank Transfer',
2020-02-18 17:13:54 +03:00
],
'reports' => [
2022-06-01 10:15:55 +03:00
'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.',
2020-02-18 17:13:54 +03:00
],
2018-08-06 10:37:04 +03:00
];