18 lines
541 B
PHP
18 lines
541 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
Route::group(['middleware' => 'auth'], function () {
|
|
//Print Barcode
|
|
Route::get('/products/print-barcode', 'BarcodeController@printBarcode')->name('barcode.print');
|
|
//Product
|
|
Route::resource('products', 'ProductController');
|
|
//Product Category
|
|
Route::resource('product-categories', 'CategoriesController')->except('create', 'show');
|
|
});
|
|
|