- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
13 lines
390 B
PHP
13 lines
390 B
PHP
<?php
|
|
|
|
use App\Containers\Education\UI\WEB\Controllers\ClientProgramController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
Route::middleware('access-check')->group(function () {
|
|
Route::get('/programs/', [ClientProgramController::class, 'index'])->name('client.program.index');
|
|
Route::get('/program/{slug}', [ClientProgramController::class, 'show'])->name('client.program.show');
|
|
});
|
|
|
|
|