Skip to content

Instantly share code, notes, and snippets.

@clone1018
Created April 26, 2016 20:50
Show Gist options
  • Save clone1018/c4e61c87e79c281ee42f1ac312f86e9e to your computer and use it in GitHub Desktop.
Save clone1018/c4e61c87e79c281ee42f1ac312f86e9e to your computer and use it in GitHub Desktop.
<?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