mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 19:51:09 -04:00
v6 update
This commit is contained in:
@ -43,6 +43,11 @@ return [
|
||||
|
||||
'min_sqlite_version' => '3.24.0',
|
||||
|
||||
/*
|
||||
* Marketplace url.
|
||||
*/
|
||||
'base_url' => 'https://craterapp.com',
|
||||
|
||||
/*
|
||||
* List of languages supported by Crater.
|
||||
*/
|
||||
@ -352,6 +357,16 @@ return [
|
||||
'ability' => 'view-expense',
|
||||
'model' => Expense::class
|
||||
],
|
||||
[
|
||||
'title' => 'navigation.modules',
|
||||
'group' => 3,
|
||||
'link' => '/admin/modules',
|
||||
'icon' => 'PuzzleIcon',
|
||||
'name' => 'Modules',
|
||||
'owner_only' => true,
|
||||
'ability' => '',
|
||||
'model' => ''
|
||||
],
|
||||
[
|
||||
'title' => 'navigation.users',
|
||||
'group' => 3,
|
||||
@ -370,7 +385,8 @@ return [
|
||||
'name' => 'Reports',
|
||||
'owner_only' => false,
|
||||
'ability' => 'view-financial-reports',
|
||||
'model' => ''],
|
||||
'model' => ''
|
||||
],
|
||||
[
|
||||
'title' => 'navigation.settings',
|
||||
'group' => 3,
|
||||
@ -383,6 +399,62 @@ return [
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
* List of customer portal menu
|
||||
*/
|
||||
'customer_menu' => [
|
||||
[
|
||||
'title' => 'Dashboard',
|
||||
'link' => '/customer/dashboard',
|
||||
'icon' => '',
|
||||
'name' => '',
|
||||
'ability' => '',
|
||||
'owner_only' => false,
|
||||
'group' => '',
|
||||
'model' => ''
|
||||
],
|
||||
[
|
||||
'title' => 'Invoices',
|
||||
'link' => '/customer/invoices',
|
||||
'icon' => '',
|
||||
'name' => '',
|
||||
'ability' => '',
|
||||
'owner_only' => false,
|
||||
'group' => '',
|
||||
'model' => ''
|
||||
],
|
||||
[
|
||||
'title' => 'Estimates',
|
||||
'link' => '/customer/estimates',
|
||||
'icon' => '',
|
||||
'name' => '',
|
||||
'owner_only' => false,
|
||||
'ability' => '',
|
||||
'group' => '',
|
||||
'model' => ''
|
||||
],
|
||||
[
|
||||
'title' => 'Payments',
|
||||
'link' => '/customer/payments',
|
||||
'icon' => '',
|
||||
'name' => '',
|
||||
'owner_only' => false,
|
||||
'ability' => '',
|
||||
'group' => '',
|
||||
'model' => ''
|
||||
],
|
||||
[
|
||||
'title' => 'Settings',
|
||||
'link' => '/customer/settings',
|
||||
'icon' => '',
|
||||
'name' => '',
|
||||
'owner_only' => false,
|
||||
'ability' => '',
|
||||
'group' => '',
|
||||
'model' => ''
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
* List of recurring invoice status
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user