transaction show page file updated..

This commit is contained in:
Cüneyt Şentürk
2021-06-24 13:52:49 +03:00
parent 0f6ef79384
commit 19a417791e
32 changed files with 2743 additions and 336 deletions

View File

@ -89,19 +89,35 @@ return [
// Transactions
'income' => [
'group' => 'sales',
'route' => [
'prefix' => 'revenues', // core use with group + prefix, module ex. estimates
'parameter' => 'revenue', // sales/invoices/{parameter}/edit
//'create' => 'invoices.create', // if you change route, you can write full path
],
'permission' => [
'prefix' => 'revenues',
//'create' => 'create-sales-revenues',
],
'translation' => [
'prefix' => 'revenues', // this translation file name.
],
'contact_type' => 'customer',
],
'expense' => [
'group' => 'purchases',
'route' => [
'prefix' => 'payments', // core use with group + prefix, module ex. estimates
'parameter' => 'payment', // sales/invoices/{parameter}/edit
//'create' => 'invoices.create', // if you change route, you can write full path
],
'permission' => [
'prefix' => 'payments',
//'create' => 'create-purchases-payments',
],
'translation' => [
'prefix' => 'payments', // this translation file name.
],
'contact_type' => 'vendor',
],