fix devops error
This commit is contained in:
@@ -6,16 +6,12 @@ Route::prefix('Articles')->name('Articles.')->group(function () {
|
||||
Route::delete('destroy/{id?}', 'ArticleController@destroy')->name('destroy');
|
||||
Route::post('store', 'ArticleController@store')->name('store');
|
||||
Route::get('edit/{id}', 'ArticleController@edit')->name('edit');
|
||||
|
||||
Route::any('getImages/{id?}', 'ArticleController@getImages')->name('getImages');
|
||||
Route::post('deleteImage', 'ArticleController@deleteImage')->name('deleteImage');
|
||||
|
||||
Route::any('autocomplete/{q?}', 'ArticleController@autocomplete')->name('autocomplete');
|
||||
|
||||
Route::get('getProductDescription/{product_id?}/{model?}', 'ArticleController@getProductDescription')->name('getProductDescription');
|
||||
Route::get('getProductTags/{product_id?}/{model?}', 'ArticleController@getProductTags')->name('getProductTags');
|
||||
Route::get('getProductImages/{product_id?}/{model?}', 'ArticleController@getProductImages')->name('getProductImages');
|
||||
Route::post('toggleVisible', 'ArticleController@toggleVisible')->name('toggleVisible');
|
||||
Route::post('toggleHomepage', 'ArticleController@toggleHomepage')->name('toggleHomepage');
|
||||
|
||||
});
|
||||
|
||||
@@ -7,5 +7,4 @@ Route::prefix('CustomerAddresses')->name('CustomerAddresses.')->group(function (
|
||||
Route::post('update', 'CustomerAddressController@update')->name('update');
|
||||
Route::post('store', 'CustomerAddressController@store')->name('store');
|
||||
Route::get('edit/{id}', 'CustomerAddressController@edit')->name('edit');
|
||||
|
||||
});
|
||||
|
||||
@@ -7,5 +7,4 @@ Route::prefix('Customers')->name('Customers.')->group(function () {
|
||||
Route::post('update', 'CustomerController@update')->name('update');
|
||||
Route::post('store', 'CustomerController@store')->name('store');
|
||||
Route::get('edit/{id}', 'CustomerController@edit')->name('edit');
|
||||
|
||||
});
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<?php
|
||||
|
||||
Route::resource('InvoiceItems', 'InvoiceItemController');
|
||||
@@ -7,5 +7,4 @@ Route::prefix('InvoicePayments')->name('InvoicePayments.')->group(function () {
|
||||
Route::post('update', 'InvoicePaymentController@update')->name('update');
|
||||
Route::post('store', 'InvoicePaymentController@store')->name('store');
|
||||
Route::get('edit/{id?}', 'InvoicePaymentController@edit')->name('edit');
|
||||
|
||||
});
|
||||
|
||||
@@ -7,5 +7,4 @@ Route::prefix('Invoices')->name('Invoices.')->group(function () {
|
||||
Route::post('update', 'InvoiceController@update')->name('update');
|
||||
Route::post('store', 'InvoiceController@store')->name('store');
|
||||
Route::get('edit/{id}', 'InvoiceController@edit')->name('edit');
|
||||
|
||||
});
|
||||
|
||||
@@ -11,7 +11,5 @@ Route::prefix('Merchandises')->name('Merchandises.')->group(function () {
|
||||
Route::post('getSelect', 'MerchandiseController@getOptions')->name('getSelect');
|
||||
Route::post('deleteImage', 'MerchandiseController@deleteImage')->name('deleteImage');
|
||||
Route::any('getImages/{id?}/{can_edit?}', 'MerchandiseController@getImages')->name('getImages');
|
||||
|
||||
Route::any('exportExcel', 'MerchandiseController@exportExcel')->name('exportExcel');
|
||||
|
||||
});
|
||||
|
||||
@@ -7,9 +7,7 @@ Route::prefix('PriceLists')->name('PriceLists.')->group(function () {
|
||||
Route::post('store', 'PriceListController@store')->name('store');
|
||||
Route::delete('destroy/{id?}', 'PriceListController@destroy')->name('destroy');
|
||||
Route::get('getPrices/{id?}', 'PriceListController@getPrice')->name('getPrices');
|
||||
|
||||
Route::get('modalCreate/{tariff_id?}', 'PriceListController@modalCreate')->name('modalCreate');
|
||||
Route::get('modalEdit/{id?}', 'PriceListController@modalEdit')->name('modalEdit');
|
||||
Route::post('storeAjax', 'PriceListController@storeAjax')->name('storeAjax');
|
||||
|
||||
});
|
||||
|
||||
@@ -7,5 +7,4 @@ Route::prefix('SaleChannels')->name('SaleChannels.')->group(function () {
|
||||
Route::post('update', 'SaleChannelController@update')->name('update');
|
||||
Route::post('store', 'SaleChannelController@store')->name('store');
|
||||
Route::get('edit/{id}', 'SaleChannelController@edit')->name('edit');
|
||||
|
||||
});
|
||||
|
||||
@@ -7,7 +7,5 @@ Route::prefix('Tariffs')->name('Tariffs.')->group(function () {
|
||||
Route::post('update', 'TariffController@update')->name('update');
|
||||
Route::post('store', 'TariffController@store')->name('store');
|
||||
Route::get('edit/{id}', 'TariffController@edit')->name('edit');
|
||||
|
||||
Route::any('autocomplete/{q?}', 'TariffController@autocomplete')->name('autocomplete');
|
||||
|
||||
});
|
||||
|
||||
@@ -7,7 +7,5 @@ Route::prefix('Variations')->name('Variations.')->group(function () {
|
||||
Route::post('update', 'VariationController@update')->name('update');
|
||||
Route::post('store', 'VariationController@store')->name('store');
|
||||
Route::get('edit/{id}', 'VariationController@edit')->name('edit');
|
||||
|
||||
Route::any('autocomplete/{q?}', 'VariationController@autocomplete')->name('autocomplete');
|
||||
|
||||
});
|
||||
|
||||
@@ -12,7 +12,6 @@ Route::middleware('auth')->prefix('Shop')->namespace('Shop')->name('Shop.')->gro
|
||||
include_once __DIR__.'/DeliveryPackages.php';
|
||||
include_once __DIR__.'/DeliveryTypes.php';
|
||||
include_once __DIR__.'/DeliveryTypeCalculations.php';
|
||||
include_once __DIR__.'/InvoiceItems.php';
|
||||
include_once __DIR__.'/InvoicePayments.php';
|
||||
include_once __DIR__.'/Invoices.php';
|
||||
include_once __DIR__.'/Merchandises.php';
|
||||
|
||||
Reference in New Issue
Block a user