coolify/routes/web.php

9 lines
149 B
PHP
Raw Permalink Normal View History

2023-03-17 14:33:48 +00:00
<?php
2025-03-29 15:20:45 +00:00
declare(strict_types=1);
2026-03-04 16:10:19 +00:00
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', fn () => Inertia::render('dashboard'));