Roman_applicant-site/routes/api.php

24 lines
777 B
PHP
Raw Normal View History

2024-01-10 12:57:24 +03:00
<?php
2024-03-06 15:20:16 +03:00
use App\Http\Controllers\admin\PageController;
2024-03-07 13:58:54 +03:00
use App\Http\Controllers\Api\CalculatorController;
2024-01-10 12:57:24 +03:00
use Illuminate\Http\Request;
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 and all of them will
| be assigned to the "api" middleware group. Make something great!
|
*/
Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
return $request->user();
});
2024-03-06 15:20:16 +03:00
2024-03-07 13:58:54 +03:00
Route::post('/calculator', [CalculatorController::class, 'findDirectionFromSubjects'])->name('calculator');