name('PriceGenerics.')->group(function () { Route::get('', 'PriceGenericController@index')->name('index'); Route::get('create', 'PriceGenericController@create')->name('create'); Route::delete('destroy/{id?}', 'PriceGenericController@destroy')->name('destroy'); Route::post('update', 'PriceGenericController@update')->name('update'); Route::post('store', 'PriceGenericController@store')->name('store'); Route::get('edit/{id}', 'PriceGenericController@edit')->name('edit'); });