FleetCart/Modules/Product/Routes/public.php
2023-12-03 14:07:47 +00:00

12 lines
395 B
PHP

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