3 use Illuminate\Http\Request;
4 use Illuminate\Support\Facades\Route;
7 |--------------------------------------------------------------------------
9 |--------------------------------------------------------------------------
11 | Here is where you can register API routes for your application. These
12 | routes are loaded by the RouteServiceProvider within a group which
13 | is assigned the "api" middleware group. Enjoy building your API!
17 Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
18 return $request->user();
21 Route::post('rounds', 'App\Http\Controllers\RoundController@create');
23 Route::get('tournaments/{id}', 'App\Http\Controllers\TournamentController@single');