mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 03:02:38 +01:00
7 lines
183 B
PHP
7 lines
183 B
PHP
|
<?php
|
||
|
|
||
|
// Setup route.
|
||
|
Route::group(['before' => 'is_setup', 'namespace' => 'CachetHQ\Cachet\Http\Controllers'], function () {
|
||
|
Route::controller('/setup', 'SetupController');
|
||
|
});
|