Remove experimental multi period thing.

This commit is contained in:
James Cole 2017-09-02 07:40:39 +02:00
parent 7cab89a291
commit 78bae33433
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 0 additions and 2 deletions

View File

@ -111,7 +111,6 @@
<a href="{{ route('budgets.index', [start.format('Y-m-d')]) }}" class="btn btn-default">{{ currentMonth }}</a>
<a href="{{ route('budgets.index', [next.format('Y-m-d')]) }}" class="btn btn-default" title="{{ nextText }}">&rarr;</a>
</div>
<div><a href="{{ route('budgets.multi-period') }}">{{ 'multi_period_overview'|_ }}</a></div>
</div>
<div class="col-lg-2 col-md-4 col-sm-12 col-xs-12 text-right">
<select class="form-control selectPeriod" name="next">

View File

@ -144,7 +144,6 @@ Route::group(
Route::get('show/{budget}', ['uses' => 'BudgetController@show', 'as' => 'show']);
Route::get('show/{budget}/{budgetlimit}', ['uses' => 'BudgetController@showByBudgetLimit', 'as' => 'show.limit']);
Route::get('list/no-budget/{moment?}', ['uses' => 'BudgetController@noBudget', 'as' => 'no-budget']);
Route::get('multi-period', ['uses' => 'BudgetController@multiPeriod', 'as' => 'multi-period']);
Route::get('{moment?}', ['uses' => 'BudgetController@index', 'as' => 'index']);