api code global jain

This commit is contained in:
Abhishek Mali
2025-11-05 10:37:10 +05:30
commit 52fe7e2bec
2834 changed files with 1784903 additions and 0 deletions

26
routes/api.php Normal file
View File

@@ -0,0 +1,26 @@
<?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);
});