edit delete schemas
This commit is contained in:
@@ -63,6 +63,14 @@ Route::group(
|
||||
Route::get("/schemas", [SchemaController::class, "home"]);
|
||||
Route::get("/schemas/edit/{id}", [SchemaController::class, "edit"]);
|
||||
Route::post("/schemas", [SchemaController::class, "postCreate"]);
|
||||
Route::post("/schemas/update", [
|
||||
SchemaController::class,
|
||||
"postUpdate",
|
||||
]);
|
||||
Route::post("/schemas/delete", [
|
||||
SchemaController::class,
|
||||
"postDelete",
|
||||
]);
|
||||
Route::get("/fields/create", [FieldController::class, "create"]);
|
||||
Route::get("/fields/edit/{id}", [FieldController::class, "edit"]);
|
||||
Route::post("/fields", [FieldController::class, "postCreate"]);
|
||||
|
||||
Reference in New Issue
Block a user