ogsoft-example/routes/web.php

8 lines
123 B
PHP
Raw Permalink Normal View History

2024-08-04 17:20:32 +00:00
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
2024-08-07 10:51:35 +00:00
return redirect('/api/documentation');
2024-08-04 17:20:32 +00:00
});