20 lines
648 B
PHP
Raw Normal View History

2024-09-04 12:22:04 +05:45
<?php
use Illuminate\Support\Facades\Route;
2024-09-11 12:32:15 +05:45
use Modules\Setting\Http\Controllers\SettingController;
2024-09-04 12:22:04 +05:45
/*
*--------------------------------------------------------------------------
* 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(['auth:sanctum'])->prefix('v1')->group(function () {
2024-09-11 12:32:15 +05:45
Route::apiResource('setting', SettingController::class)->names('setting');
2024-09-04 12:22:04 +05:45
});