inital commit

This commit is contained in:
2026-06-24 18:29:01 +06:00
commit f401802bf7
3918 changed files with 553085 additions and 0 deletions

21
routes/api.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| 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!
|
*/
// for testing
Route::post('test',[\App\Http\Controllers\TestController::class,'testing']);
Route::post('reverse/test',[\App\Http\Controllers\TestController::class,'reverse']);
Route::get('generatekey',[\App\Http\Controllers\TestController::class,'generateKeys']);