mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -06:00
7 lines
133 B
PHP
7 lines
133 B
PHP
<?php
|
|
/*
|
|
* Back home.
|
|
*/
|
|
Breadcrumbs::register('home', function($breadcrumbs) {
|
|
$breadcrumbs->push('Home', route('index'));
|
|
}); |