mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-15 01:43:34 -06:00
Updated some routes.
This commit is contained in:
parent
c61f1307d8
commit
f2825da878
@ -190,7 +190,8 @@ Route::group(['before' => 'auth'], function () {
|
||||
Route::get('/migrate',['uses' => 'MigrateController@index', 'as' => 'migrate.index']);
|
||||
|
||||
// piggy bank controller
|
||||
Route::get('/piggybanks',['uses' => 'PiggybankController@index','as' => 'piggybanks.index']);
|
||||
Route::get('/piggybanks',['uses' => 'PiggybankController@piggybanks','as' => 'piggybanks.index.piggybanks']);
|
||||
Route::get('/repeated',['uses' => 'PiggybankController@repeated','as' => 'piggybanks.index.repeated']);
|
||||
Route::get('/piggybanks/create/piggybank', ['uses' => 'PiggybankController@createPiggybank','as' => 'piggybanks.create.piggybank']);
|
||||
Route::get('/piggybanks/create/repeated', ['uses' => 'PiggybankController@createRepeated','as' => 'piggybanks.create.repeated']);
|
||||
Route::get('/piggybanks/addMoney/{piggybank}', ['uses' => 'PiggybankController@addMoney','as' => 'piggybanks.amount.add']);
|
||||
|
Loading…
Reference in New Issue
Block a user