removed transactions from portal

This commit is contained in:
denisdulici
2019-11-30 02:08:25 +03:00
parent 3d48bf4345
commit 7b13b79c27
10 changed files with 23 additions and 165 deletions

View File

@@ -16,13 +16,10 @@ class AddPortalItems
{
$menu = $event->menu;
// Dashboard
$menu->route('portal.dashboard', trans_choice('general.dashboards', 1), [], 1, ['icon' => 'fa fa-tachometer-alt']);
// Invoices
$menu->route('portal.invoices.index', trans_choice('general.invoices', 2), [], 2, ['icon' => 'fa fa-money-bill']);
$menu->route('portal.invoices.index', trans_choice('general.invoices', 2), [], 2, ['icon' => 'fa fa-file-signature']);
// Payments
$menu->route('portal.payments.index', trans_choice('general.payments', 2), [], 3, ['icon' => 'fa fa-shopping-cart']);
$menu->route('portal.payments.index', trans_choice('general.payments', 2), [], 3, ['icon' => 'fa fa-money-bill']);
}
}

View File

@@ -649,7 +649,6 @@ class Version200 extends Listener
'client-portal' => 'r',
'portal-invoices' => 'r,u',
'portal-payments' => 'r,u',
'portal-transactions' => 'r',
'portal-profile' => 'r,u',
],
]);
@@ -837,6 +836,8 @@ class Version200 extends Listener
'resources/assets/js/components/Example.vue',
'resources/assets/sass/_variables.scss',
'resources/assets/sass/app.scss',
'resources/views/expenses/bills/bill.blade.php',
'resources/views/incomes/invoices/invoice.blade.php',
'resources/views/layouts/customer.blade.php',
'resources/views/layouts/link.blade.php',
'resources/views/modules/token/create.blade.php',