Created
August 1, 2014 17:37
-
-
Save clone1018/ac6e0fe710e888b98975 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
+--------+---------------+------+--------------------------------------------+----------------+---------------+ | |
| Domain | URI | Name | Action | Before Filters | After Filters | | |
+--------+---------------+------+--------------------------------------------+----------------+---------------+ | |
| | GET|HEAD / | | HomeController@index | | | | |
+--------+---------------+------+--------------------------------------------+----------------+---------------+ |
This file contains hidden or 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
<?php | |
Route::get("/", "HomeController@index"); | |
Route::controller("/sdgd", "AnotherController"); | |
Route::group( | |
array('prefix' => 'api', 'namespace' => 'SomeNamespace\\Another'), function () { | |
Route::get('/whgat', 'InsideNameSpace@someRoute'); | |
Route::resource('/thing', 'AnotherController'); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment