october_1x0/modules/system/routes.php

12 lines
243 B
PHP
Raw Normal View History

2022-06-24 14:32:37 +00:00
<?php
/**
* Register System routes before all user routes.
*/
App::before(function ($request) {
/*
* Combine JavaScript and StyleSheet assets
*/
Route::any('combine/{file}', 'System\Classes\SystemController@combine');
});