$this->id, 'object' => 'address', 'name' => $this->name, 'street' => $this->street, 'city' => $this->city, 'province' => $this->province, 'postal_code' => $this->postal_code, 'country' => new CountryResource($this->country), 'account' => [ 'id' => $this->account_id, ], 'contact' => new ContactShortResource($this->contact), 'created_at' => (is_null($this->created_at) ? null : $this->created_at->format(config('api.timestamp_format'))), 'updated_at' => (is_null($this->updated_at) ? null : $this->updated_at->format(config('api.timestamp_format'))), ]; } }