- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
16 lines
437 B
PHP
16 lines
437 B
PHP
<?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');
|
|
});
|
|
|
|
|
|
|