mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 05:29:12 -06:00
24 lines
651 B
PHP
24 lines
651 B
PHP
<?php
|
|
|
|
return [
|
|
'index' => [
|
|
'parent' => null,
|
|
'title' => 'breadcrumbs.home',
|
|
'static_route' => 'home',
|
|
'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',
|
|
],
|
|
],
|
|
]; |