8 lines
250 B
PHP
8 lines
250 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Support\Facades\Route;
|
||
|
|
||
|
Route::get('categories', 'CategoryController@index')->name('categories.index');
|
||
|
|
||
|
Route::get('categories/{category}/products', 'CategoryProductController@index')->name('categories.products.index');
|