FleetCart/Modules/Product/Routes/public.php

11 lines
393 B
PHP
Raw Permalink Normal View History

2023-06-11 12:14:03 +00:00
<?php
use Illuminate\Support\Facades\Route;
Route::get('products', 'ProductController@index')->name('products.index');
Route::get('products/{slug}', 'ProductController@show')->name('products.show');
Route::get('suggestions', 'SuggestionController@index')->name('suggestions.index');
Route::post('products/{id}/price', 'ProductPriceController@show')->name('products.price.show');