'integer', 'whmcs_client_id' => 'integer', 'whmcs_order_id' => 'integer', 'config' => 'array', ]; } public function customer(): BelongsTo { return $this->belongsTo(Customer::class); } public function user(): BelongsTo { return $this->belongsTo(User::class); } public function plan(): BelongsTo { return $this->belongsTo(HostingPlan::class, 'hosting_plan_id'); } }