Archived
1
0
Fork 0

Character: add ability to edit a character.

This commit is contained in:
Henrik Hautakoski 2021-07-03 13:45:48 +02:00
parent d8895901bf
commit b6f1f8b887
8 changed files with 217 additions and 70 deletions

View file

@ -50,6 +50,7 @@ Route::prefix('characters')->name('character.')->group(function() {
});
Route::get('/', [CharacterController::class, 'show'])->name('show');
Route::get('/edit', [CharacterController::class, 'edit'])->name('edit');
Route::delete('/', [CharacterController::class, 'destroy'])->name('destroy');
});
});