php - laravel routes, how to group similar in one file -


i'm working laravel(5.2), , there lot routes in route file.

in fresh install noticed loading auth routes this.

route::auth(); 

nothing else there in routes.php file related auth routes.

in file, i've one

route::get('color/event', 'colorcontroller@index'); route::post('color/event', 'colorcontroller@post_message); ... ... 

and many others, want load in laravel way, route::color(); , should load color related routes

thanks time

you can try

route::resource('admin/settings','admin\settingscontroller'); 

and try command

$ php artisan routes 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -