Add function insert name and translation into DB

This commit is contained in:
paoloGuagnano
2024-02-08 18:47:52 +01:00
parent f0746b67f5
commit dabe294cc2
5 changed files with 25 additions and 11 deletions

View File

@@ -56,7 +56,8 @@ Route::prefix('words')->group(function () {
Route::post('/', [WordsController::class, 'store'])->name('words.insert');
});
Route::get('delete_record/{id}', [WordsController::class, 'delete']);
//Route::get('delete_record/{id}', [WordsController::class, 'update']);
require __DIR__ . '/auth.php';