This commit is contained in:
2025-06-07 14:54:07 +02:00
parent 6cac04fe68
commit 6136ffa5f6
3 changed files with 33 additions and 1 deletions

View File

@@ -1,7 +1,10 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\MangasController;
Route::get('/', function () {
return view('welcome');
});
Route::resource("mangas", MangasController::class);