Created
August 23, 2015 15:56
-
-
Save raank/09b630a488ac44f1ccf1 to your computer and use it in GitHub Desktop.
my routes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Route::group(['prefix' => 'admin', 'middleware' => 'auth'], function() | |
{ | |
Route::get('/', 'Admin\DashboardController@index'); | |
Route::get('dashboard', 'Admin\DashboardController@index'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment