Created
April 26, 2016 20:50
-
-
Save clone1018/c4e61c87e79c281ee42f1ac312f86e9e 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
<?php | |
// Wanted End Permission: reports.incentive.details | |
Route::group(['prefix' => 'reports', 'namespace' => 'Reports', 'middleware' => 'permissions:reports'], function() { | |
Route::group(['prefix' => 'incentive', 'namespace' => 'Incentive', 'middleware' => 'permissions:incentive'], function() { | |
Route::group(['prefix' => 'details', 'namespace' => 'Details', 'middleware' => 'permissions:details'], function() { | |
// | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment