Add tariff unities management
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('ArticleNatures')->name('ArticleNatures.')->group(function () {
|
||||
Route::get('', 'ArticleNatureController@index')->name('index');
|
||||
Route::get('create', 'ArticleNatureController@create')->name('create');
|
||||
Route::delete('destroy/{id?}', 'ArticleNatureController@destroy')->name('destroy');
|
||||
Route::post('update', 'ArticleNatureController@update')->name('update');
|
||||
Route::post('store', 'ArticleNatureController@store')->name('store');
|
||||
Route::get('edit/{id}', 'ArticleNatureController@edit')->name('edit');
|
||||
|
||||
Route::prefix('TariffUnities')->name('TariffUnities.')->group(function () {
|
||||
Route::get('', 'TariffUnityController@index')->name('index');
|
||||
Route::get('create', 'TariffUnityController@create')->name('create');
|
||||
Route::delete('destroy/{id?}', 'TariffUnityController@destroy')->name('destroy');
|
||||
Route::post('update', 'TariffUnityController@update')->name('update');
|
||||
Route::post('store', 'TariffUnityController@store')->name('store');
|
||||
Route::get('edit/{id}', 'TariffUnityController@edit')->name('edit');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user