fix migration

This commit is contained in:
root
2026-05-29 05:13:00 -04:00
parent cdeab1796f
commit e362f68d8d
20 changed files with 838 additions and 18 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return response()->json([
'success' => true,
'message' => 'Laravel school API is running.',
]);
});