29 lines
891 B
PHP
29 lines
891 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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!
|
|
|
|
|
*/
|
|
$api = app('Dingo\Api\Routing\Router');
|
|
|
|
$api->version('v1', ['namespace' => 'App\Http\Controllers\Api'], function ($api) {
|
|
$api->post('verificationCodes', 'VerificationCodesController@store')
|
|
->name('api.verificationCodes.store');
|
|
});
|
|
|
|
/*$api->version('v2', function ($api) {
|
|
$api->get('version', function () {
|
|
return response('this is version v2');
|
|
});
|
|
});*/
|
|
|
|
/*Route::middleware('auth:api')->get('/user', function (Request $request) {
|
|
return $request->user();
|
|
});*/
|