bookingId = $data['booking_id']; $this->companyId = $data['company_id']; $this->amount = $data['amount'] ?? null; $this->paymentMethod = $data['payment_method'] ?? null; $this->voucherCode = $data['voucherCode'] ?? null; } public function toArray(): array { return [ 'booking_id' => $this->bookingId, 'company_id' => $this->companyId, 'amount' => $this->amount, 'payment_method' => $this->paymentMethod, 'voucher_code' => $this->voucherCode, ]; } }