feat(core): add base app route

This commit is contained in:
peaklabs-dev
2025-04-22 21:50:26 +02:00
parent 3c7616318d
commit 237f13bfcc
+4
View File
@@ -1,3 +1,7 @@
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Route;
Route::get('/', fn () => view('app'));