feat: implement module API routes, controllers, and comprehensive system testing with role-based access control
Some checks failed
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
Tests / PHP 8.5 (push) Has been cancelled

This commit is contained in:
Ajjj
2026-08-06 19:38:51 +08:00
parent c13f418517
commit 10eb7be033
49 changed files with 405 additions and 360 deletions

View File

@@ -1,19 +1,6 @@
<?php
use Illuminate\Support\Facades\Route;
use Modules\ProjectQualityControl\Http\Controllers\ProjectQualityControlController;
/*
*--------------------------------------------------------------------------
* 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!
*
*/
// Scaffold API routes disabled until REST client contracts are authored.
Route::middleware(['auth:sanctum'])->prefix('v1')->group(function () {
Route::apiResource('projectqualitycontrol', ProjectQualityControlController::class)->names('projectqualitycontrol');
});