From 8fb7d82babd8deb136e71734e3a7fa37d2b05b08 Mon Sep 17 00:00:00 2001 From: Abdullah Alansari Date: Wed, 18 Nov 2015 16:46:29 +0300 Subject: [PATCH] Fix no admin/consumables route --- app/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes.php b/app/routes.php index 1717faec93..6b9bea668c 100755 --- a/app/routes.php +++ b/app/routes.php @@ -321,7 +321,7 @@ Route::get( '{consumableID}/checkout', [ 'as' => 'checkout/consumable', 'uses' => 'ConsumablesController@getCheckout' ] ); Route::post( '{consumableID}/checkout', 'ConsumablesController@postCheckout' ); - Route::get( '/', [ 'as' => 'accessories', 'uses' => 'ConsumablesController@getIndex' ] ); + Route::get( '/', [ 'as' => 'consumables', 'uses' => 'ConsumablesController@getIndex' ] ); } ); # Admin Settings Routes (for categories, maufactureres, etc)