Skip to content

Instantly share code, notes, and snippets.

@helmerdavila
Created July 8, 2015 13:56
Show Gist options
  • Save helmerdavila/7577758355aac3b4100e to your computer and use it in GitHub Desktop.
Save helmerdavila/7577758355aac3b4100e to your computer and use it in GitHub Desktop.
Laravel para Diseño
//donde se pone la vista se genera una ruta
Route::group(['middleware' => 'auth'], function () {
Route::get('{view}', function ($view) {
try {
return view($view);
} catch (\Exception $e) {
abort(404);
}
})->where('view', '.*');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment