10 lines
383 B
PHP
10 lines
383 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Illuminate\Support\Facades\Route;
|
||
|
|
use App\Http\Controllers\CategoryController;
|
||
|
|
use App\Http\Controllers\AlbumController;
|
||
|
|
|
||
|
|
Route::get('/', [CategoryController::class, 'index'])->name('index');
|
||
|
|
Route::get('/category/{category}', [CategoryController::class, 'show'])->name('category.show');
|
||
|
|
Route::get('/album/{album}', [AlbumController::class, 'show'])->name('album.show');
|