Migrate backend to Porto architecture and fix minor bugs
- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
use App\Containers\Schedule\UI\WEB\Controllers\ClientScheduleController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
|
||||
|
||||
Route::middleware('access-check')->group(function () {
|
||||
// Расписание занятий
|
||||
Route::get('/schedule', [ClientScheduleController::class, 'index'])->name('client.schedule.index');
|
||||
Route::get('/schedule/{id}', [ClientScheduleController::class, 'show'])->name('client.schedule.show');
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user