Fixes
This commit is contained in:
@@ -7,6 +7,7 @@ Route::prefix('Species')->name('Species.')->group(function () {
|
||||
Route::post('update', 'SpecieController@update')->name('update');
|
||||
Route::post('store', 'SpecieController@store')->name('store');
|
||||
Route::get('edit/{id}', 'SpecieController@edit')->name('edit');
|
||||
Route::any('getSelect', 'SpecieController@getOptions')->name('getSelect');
|
||||
|
||||
Route::any('exportExcel', 'SpecieController@exportExcel')->name('exportExcel');
|
||||
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
<?php
|
||||
|
||||
Route::resource('PriceFamilies', 'PriceFamilyController');
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('PriceFamilyValues')->name('PriceFamilyValues.')->group(function () {
|
||||
Route::any('getOptionsByFamily', 'PriceFamilyValueController@getOptionsByFamily')->name('getOptionsByFamily');
|
||||
});
|
||||
|
||||
Route::resource('PriceFamilyValues', 'PriceFamilyValueController');
|
||||
@@ -13,7 +13,6 @@ Route::middleware('auth')->prefix('Admin')->namespace('Admin')->name('Admin.')->
|
||||
include __DIR__ . '/Invoices.php';
|
||||
include __DIR__ . '/OrderPayments.php';
|
||||
include __DIR__ . '/Orders.php';
|
||||
include __DIR__ . '/PriceFamilies.php';
|
||||
include __DIR__ . '/PriceGenerics.php';
|
||||
include __DIR__ . '/Tags.php';
|
||||
include __DIR__ . '/TagGroups.php';
|
||||
|
||||
Reference in New Issue
Block a user