Created
March 21, 2017 14:28
-
-
Save malgorath/ea82062fe5e16668a934468870a1c358 to your computer and use it in GitHub Desktop.
This right?
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::group(['prefix' => 'ead'], function () { | |
Route::resource('', 'ead\EadProjectController'); | |
Route::resource('/{ead}/parts', 'ead\EadPartController'); | |
Route::group(['prefix' => 'admin'], function () { | |
Route::get('/', 'ead\EadProjectController@admin'); | |
Route::resource('msl', 'EadMSLCodeController'); | |
Route::resource('placement', 'EadPartPlacementController'); | |
Route::resource('category', 'EadPartCategoryController'); | |
}); | |
}); | |
Route::get('/', 'HomeController@index'); | |
// Commented out so that Achievo/ATK can handle the authentication required. | |
// Auth::routes(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment