winter/modules/cms/routes.php
gergo85 f0005d196b Cleanup
Remove whitespaces.
2015-01-03 12:41:23 +01:00

13 lines
291 B
PHP

<?php
/**
* Register CMS routes before all user routes.
*/
App::before(function ($request) {
/*
* The CMS module intercepts all URLs that were not
* handled by the back-end modules.
*/
Route::any('{slug}', 'Cms\Classes\Controller@run')->where('slug', '(.*)?');
});