Skip to content

Instantly share code, notes, and snippets.

@raank
Created October 20, 2016 18:14
Show Gist options
  • Select an option

  • Save raank/0adefc82fff4fbeaa9433b50d5dd1541 to your computer and use it in GitHub Desktop.

Select an option

Save raank/0adefc82fff4fbeaa9433b50d5dd1541 to your computer and use it in GitHub Desktop.
<?php
Route::group([
'prefix' => 'anunciante',
'middleware' => 'anun'
], function() {
Route::get('', 'Anunciante@index');
});
Route::group([
'prefix' => 'user',
'middleware' => 'user'
], function() {
Route::get('', 'User@index');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment