$model->id, 'short' => $model->short, 'long' => $model->long, $model->getUpdatedAtColumn() => self::formatTimestamp($model->updated_at), $model->getCreatedAtColumn() => self::formatTimestamp($model->created_at), ]; } /** * Return the servers associated with this location. * * @return \League\Fractal\Resource\Collection|\League\Fractal\Resource\NullResource */ public function includeServers(Location $location) { if (!$this->authorize(AdminAcl::RESOURCE_SERVERS)) { return $this->null(); } return $this->collection($location->servers, new ServerTransformer()); } /** * Return the nodes associated with this location. * * @return \League\Fractal\Resource\Collection|\League\Fractal\Resource\NullResource */ public function includeNodes(Location $location) { if (!$this->authorize(AdminAcl::RESOURCE_NODES)) { return $this->null(); } return $this->collection($location->nodes, new NodeTransformer()); } }