Skip to content

Instantly share code, notes, and snippets.

@nosdoska
Created July 7, 2016 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nosdoska/a6b3e5635a40b6e909111fccf2a6d272 to your computer and use it in GitHub Desktop.
Save nosdoska/a6b3e5635a40b6e909111fccf2a6d272 to your computer and use it in GitHub Desktop.
example
<?php
Route::group(['prefix' => 'configuracion'], function(){
Route::controller('/perfil', [
'uses' => 'ConfigController@perfil',
'as' => 'config.perfil'
]);
Route::controller('/password', [
'uses' => 'ConfigController@password',
'as' => 'config.perfil'
]);
Route::controller('/imagen', [
'uses' => 'ConfigController@imagen',
'as' => 'config.perfil'
]);
Route::controller('/registro', [
'uses' => 'ConfigController@registro',
'as' => 'config.perfil'
]);
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment