getRouteKey(); } /** * {@inheritdoc} */ public function getAttributes($resource): array { /** @var \App\Models\RecipeStep $resource */ return [ 'number' => $resource->number, 'step' => $resource->step, 'createdAt' => $resource->created_at, 'updatedAt' => $resource->updated_at, ]; } /** * @inheritdoc */ public function getRelationships($resource, $isPrimary, array $includeRelationships): array { return [ 'recipe' => [ self::SHOW_SELF => true, self::SHOW_RELATED => true, ] ]; } }