mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 04:33:54 -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'));
|
||
|
});
|