StocksNew/Modules/Stock/routes/api.php

20 lines
638 B
PHP
Raw Normal View History

2024-09-04 06:37:04 +00:00
<?php
use Illuminate\Support\Facades\Route;
2024-09-11 06:47:15 +00:00
use Modules\Stock\Http\Controllers\StockController;
2024-09-04 06:37:04 +00:00
/*
*--------------------------------------------------------------------------
* 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 06:47:15 +00:00
Route::apiResource('stock', StockController::class)->names('stock');
2024-09-04 06:37:04 +00:00
});