/**
  * Display a listing of the resource.
  * @param integer $id entity id
  * @return \Illuminate\Http\Response
  */
 public function index($id)
 {
     $model = $this->model->byEntity($id)->orderBy('order', 'ASC');
     return $this->responseWithCollection($model, new FieldTransformer());
 }