2020-08-27 06:19:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'index' => [
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'title' => 'breadcrumbs.home',
|
2020-10-03 15:58:25 +02:00
|
|
|
'static_route' => 'index',
|
|
|
|
|
'dynamic_route' => null,
|
|
|
|
|
],
|
|
|
|
|
'home' => [
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'title' => 'breadcrumbs.home',
|
|
|
|
|
'static_route' => 'index',
|
2020-08-27 06:19:41 +02:00
|
|
|
'dynamic_route' => null,
|
|
|
|
|
],
|
|
|
|
|
'accounts' => [
|
|
|
|
|
'index' => [
|
|
|
|
|
'parent' => 'index',
|
|
|
|
|
'title' => 'breadcrumbs.accounts',
|
|
|
|
|
'static_route' => null,
|
|
|
|
|
'dynamic_route' => 'accounts.index',
|
|
|
|
|
],
|
|
|
|
|
'show' => [
|
|
|
|
|
'parent' => 'accounts.index',
|
|
|
|
|
'title' => 'breadcrumbs.accounts_show',
|
|
|
|
|
'static_route' => null,
|
|
|
|
|
'dynamic_route' => 'accounts.show',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
];
|