mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 18:55:43 +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');
|
|
});
|