8 lines
225 B
PHP
8 lines
225 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('brands', 'BrandController@index')->name('brands.index');
|
|
|
|
Route::get('brands/{brand}/products', 'BrandProductController@index')->name('brands.products.index');
|