Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. domain.com/dashboard
  2. domain.com/projects
  3. domain.com/project/100
  4. domain.com/project/100/emails
  5. domain.com/project/100/email/3210
  6. domain.com/project/100/files
  7. domain.com/project/100/file/56968
  8.  
  9. Route::group(['prefix' => 'project'], function(){
  10. Route::group(['prefix' => '{project_id}'], function($project_id){
  11.  
  12. // Files
  13. Route::resource('files', 'FileController');
  14.  
  15. });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement