Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Created January 27, 2015 10:38
Show Gist options
  • Save coreymcmahon/a240d782cc93dc95a449 to your computer and use it in GitHub Desktop.
Save coreymcmahon/a240d782cc93dc95a449 to your computer and use it in GitHub Desktop.
routes.php - A Pattern for Reusable Resource Controllers in Laravel 4.2 http://slashnode.com/reusable-resource-controllers/
<?php
Route::group(['prefix' => 'admin', 'before' => 'auth.admin', 'namespace' => 'App\Controllers\Admin'], function ($router) {
$router->resource('products', 'ProductsController');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment