serializer); return $this->includeCollection($client->activities, $transformer, Activity::class); } /** * @param Client $client * * @return \League\Fractal\Resource\Collection */ public function includeContacts(Client $client) { $transformer = new ClientContactTransformer($this->serializer); return $this->includeCollection($client->contacts, $transformer, ClientContact::class); } public function includeGatewayTokens(Client $client) { $transformer = new ClientGatewayTokenTransformer($this->serializer); return $this->includeCollection($client->gateway_tokens, $transformer, ClientGatewayToken::class); } /** * @param Client $client * * @return array */ public function transform(Client $client) { return [ 'id' => $this->encodePrimaryKey($client->id), 'user_id' => $this->encodePrimaryKey($client->user_id), 'assigned_user_id' => $this->encodePrimaryKey($client->assigned_user_id), 'name' => $client->name ?: '', 'website' => $client->website ?: '', 'private_notes' => $client->private_notes ?: '', 'balance' => (float) $client->balance, 'group_settings_id' => isset($client->group_settings_id) ? (string)$this->encodePrimaryKey($client->group_settings_id) : '', 'paid_to_date' => (float) $client->paid_to_date, 'credit_balance' => (float) $client->credit_balance, 'last_login' => (int)$client->last_login, // 'currency_id' => (string)$client->currency_id, 'address1' => $client->address1 ?: '', 'address2' => $client->address2 ?: '', 'phone' => $client->phone ?: '', 'city' => $client->city ?: '', 'state' => $client->state ?: '', 'postal_code' => $client->postal_code ?: '', 'country_id' => (string)$client->country_id ?: '', 'industry_id' => (string)$client->industry_id ?: '', 'custom_value1' => $client->custom_value1 ?: '', 'custom_value2' => $client->custom_value2 ?: '', 'custom_value3' => $client->custom_value3 ?: '', 'custom_value4' => $client->custom_value4 ?: '', 'shipping_address1' => $client->shipping_address1 ?: '', 'shipping_address2' => $client->shipping_address2 ?: '', 'shipping_city' => $client->shipping_city ?: '', 'shipping_state' => $client->shipping_state ?: '', 'shipping_postal_code' => $client->shipping_postal_code ?: '', 'shipping_country_id' => (string)$client->shipping_country_id ?: '', 'settings' => $client->settings ?: new \stdClass, 'is_deleted' => (bool) $client->is_deleted, 'vat_number' => $client->vat_number ?: '', 'id_number' => $client->id_number ?: '', 'updated_at' => (int)$client->updated_at, 'archived_at' => (int)$client->deleted_at, //'display_name' => $client->present()->name() ]; } }