Some new tests. Hope to have fixed the problem in hhvm.

This commit is contained in:
James Cole
2014-08-09 13:50:54 +02:00
parent f18a5fd0a3
commit b6441f3996
4 changed files with 32 additions and 2 deletions

View File

@@ -159,6 +159,9 @@ Route::group(['before' => 'auth'], function () {
// report controller:
Route::get('/reports',['uses' => 'ReportController@index','as' => 'reports.index']);
// search controller:
Route::get('/search',['uses' => 'SearchController@index','as' => 'search']);
// transaction controller:
Route::get('/transactions/create/{what}', ['uses' => 'TransactionController@create', 'as' => 'transactions.create'])->where(['what' => 'withdrawal|deposit|transfer']);
Route::get('/transaction/show/{tj}',['uses' => 'TransactionController@show','as' => 'transactions.show']);