Character: add ability to edit a character.
This commit is contained in:
parent
d8895901bf
commit
b6f1f8b887
8 changed files with 217 additions and 70 deletions
|
|
@ -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');
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Reference in a new issue