Skip to content

Instantly share code, notes, and snippets.

@mstaples
Last active October 1, 2017 00:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mstaples/e44f4c1bacb50138562cfd9fcdb0b948 to your computer and use it in GitHub Desktop.
Route::prefix('project/{project}')->middleware('auth')->group(function() {
Route::get('/', 'ProjectController@schedule');
Route::get('schedule', 'ProjectController@schedule');
Route::get('store', 'ProjectController@store');
Route::get('audiences', 'ProjectController@audiences');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment