// Attribute routes (AJAX)
Route::group(['prefix' => 'ajax/attributes'], function() {
Route::get('/get/{entityType}/{entityId}', 'AttributeController@getForEntity');
+ Route::get('/suggest', 'AttributeController@getNameSuggestions');
+ Route::post('/update/{entityType}/{entityId}', 'AttributeController@updateForEntity');
});
// Links