¨4.0.1¨
This commit is contained in:
@@ -38,12 +38,24 @@ Route::delete('attributes/{ids?}', [
|
||||
'middleware' => 'can:admin.attributes.destroy',
|
||||
]);
|
||||
|
||||
Route::get('attributes/index/table', [
|
||||
'as' => 'admin.attributes.table',
|
||||
'uses' => 'AttributeController@table',
|
||||
'middleware' => 'can:admin.attributes.index',
|
||||
]);
|
||||
|
||||
Route::get('attributes-sets', [
|
||||
'as' => 'admin.attribute_sets.index',
|
||||
'uses' => 'AttributeSetController@index',
|
||||
'middleware' => 'can:admin.attribute_sets.index',
|
||||
]);
|
||||
|
||||
Route::get('attributes-sets/index/table', [
|
||||
'as' => 'admin.attribute_sets.table',
|
||||
'uses' => 'AttributeSetController@table',
|
||||
'middleware' => 'can:admin.attribute_sets.index',
|
||||
]);
|
||||
|
||||
Route::get('attributes-sets/create', [
|
||||
'as' => 'admin.attribute_sets.create',
|
||||
'uses' => 'AttributeSetController@create',
|
||||
|
||||
Reference in New Issue
Block a user