reports description

This commit is contained in:
denisdulici
2019-12-25 23:48:13 +03:00
parent 3b56c561fd
commit ed3252d27a
7 changed files with 46 additions and 31 deletions

View File

@ -2,12 +2,28 @@
return [
'accounts_cash' => 'Cash',
'categories_deposit' => 'Deposit',
'categories_sales' => 'Sales',
'currencies_usd' => 'US Dollar',
'currencies_eur' => 'Euro',
'currencies_gbp' => 'British Pound',
'currencies_try' => 'Turkish Lira',
'accounts' => [
'cash' => 'Cash',
],
'categories' => [
'deposit' => 'Deposit',
'sales' => 'Sales',
],
'currencies' => [
'usd' => 'US Dollar',
'eur' => 'Euro',
'gbp' => 'British Pound',
'try' => 'Turkish Lira',
],
'reports' => [
'income' => 'Monthly income summary by category.',
'expense' => 'Monthly expense summary by category.',
'income_expense' => 'Monthly income vs expense summary by category.',
'tax' => 'Quarterly tax summary by category.',
'pl' => 'Quarterly profit & loss by category.',
],
];