feature primaya

This commit is contained in:
ivan-sim
2026-02-20 08:55:03 +07:00
parent 127ef3ff50
commit bc8a088d8b
35 changed files with 644 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
<?php
use Illuminate\Http\Request;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::middleware('auth:api')->get('/primaya', function (Request $request) {
return $request->user();
});