Files
Global-Jain/routes/api.php

27 lines
743 B
PHP
Raw Permalink Normal View History

2025-11-05 10:37:10 +05:30
<?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);
});