/home/techb158/immovalet.com/vendor/laravel/cashier/src/Concerns
NameSizeModeActions
AllowsCoupons.php15840644editdlrm
HandlesTaxes.php27880644editdlrm
InteractsWithPaymentBehavior.php13680644editdlrm
ManagesCustomer.php110640644editdlrm
ManagesInvoices.php83850644editdlrm
ManagesPaymentMethods.php79650644editdlrm
ManagesSubscriptions.php55360644editdlrm
PerformsCharges.php36970644editdlrm
Prorates.php13750644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/cashier/src/Concerns/HandlesTaxes.php (2788B)
automaticTax = true; return $this; } /** * Set the The IP address of the customer used to determine the tax location. * * @return $this */ public function withTaxIpAddress($ipAddress) { $this->customerIpAddress = $ipAddress; return $this; } /** * Set a pre-collected billing address used to estimate tax rates when performing "one-off" charges. * * @param string $country * @param string|null $postalCode * @param string|null $state * @return $this */ public function withTaxAddress($country, $postalCode = null, $state = null) { $this->estimationBillingAddress = array_filter([ 'country' => $country, 'postal_code' => $postalCode, 'state' => $state, ]); return $this; } /** * Get the payload for Stripe automatic tax calculation. * * @return array|null */ protected function automaticTaxPayload() { return array_filter([ 'customer_ip_address' => $this->customerIpAddress, 'enabled' => $this->isAutomaticTaxEnabled(), 'estimation_billing_address' => $this->estimationBillingAddress, ]); } /** * Determine if automatic tax is enabled. * * @return bool */ protected function isAutomaticTaxEnabled() { return $this->automaticTax ?: Cashier::$calculatesTaxes; } /** * Indicate that Tax IDs should be collected during a Stripe Checkout session. * * @return $this */ public function collectTaxIds() { $this->collectTaxIds = true; return $this; } }