mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
12 lines
294 B
PHP
12 lines
294 B
PHP
<?php
|
|
|
|
/*
|
|
* Combine JavaScript and StyleSheet assets
|
|
*/
|
|
Route::any('combine/{file}', 'Cms\Classes\Controller@combine');
|
|
|
|
/*
|
|
* The CMS module intercepts all URLs that were not
|
|
* handled by the back-end modules.
|
|
*/
|
|
Route::any('{slug}', 'Cms\Classes\Controller@run')->where('slug', '(.*)?'); |