[ 'name' => 'Retsina', // The categoryid for 'white'. 'parent' => 1, 'details' => 'Greek', ], 'trebbiano' => [ 'name' => 'Trebbiano', // The categoryid for 'white'. 'parent' => 1, 'details' => 'Italian', ], 'valpolicella' => [ 'name' => 'Valpolicella', // The categoryid for 'red'. 'parent' => 3, 'details' => 'Italian Venoto region', ], 'bardolino' => [ 'name' => 'Bardolino', // The categoryid for 'red'. 'parent' => 3, 'details' => 'Italian Venoto region', ], ]; if (isset($varieties[$variety])) { $data = ['variety' => $varieties[$variety]]; } else { $data = []; } $response = new ResourceResponse($data, 200); return $response; } /** * {@inheritdoc} */ public function permissions() { // Remove permissions so the resource is available to all. return []; } }