27 lines
743 B
PHP
27 lines
743 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
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 within a group which
|
||
|
|
| is assigned the "api" middleware group. Enjoy building your API!
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
Route::middleware([
|
||
|
|
//
|
||
|
|
])->group(function () {
|
||
|
|
includeRouteFiles(__DIR__ . '/api/versions');
|
||
|
|
});
|
||
|
|
|
||
|
|
//Default exception response if no route found under api urls
|
||
|
|
Route::fallback(function () {
|
||
|
|
return response()->json(['error' => trans('api.something_went_wrong')], 404);
|
||
|
|
});
|