winter/modules/cms/routes.php
2015-04-21 20:07:34 +10:00

13 lines
294 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\CmsController@run')->where('slug', '(.*)?');
});