First version of line edit.

This commit is contained in:
James Cole
2024-03-16 22:00:25 +01:00
parent 845eaed8d7
commit f0fa21dead
10 changed files with 401 additions and 5 deletions

View File

@@ -106,6 +106,7 @@ Route::group(
static function (): void {
Route::get('', ['uses' => 'IndexController@index', 'as' => 'index']);
Route::get('{account}', ['uses' => 'ShowController@show', 'as' => 'show']);
Route::put('{account}', ['uses' => 'UpdateController@update', 'as' => 'update']);
}
);