/home/techb158/immovalet.com/vendor/laravel/cashier/src
NameSizeModeActions
Concerns/-0755rm
Console/-0755rm
Events/-0755rm
Exceptions/-0755rm
Http/-0755rm
Notifications/-0755rm
Billable.php4970644editdlrm
Cashier.php53230644editdlrm
CashierServiceProvider.php37150644editdlrm
Checkout.php39330644editdlrm
Coupon.php28370644editdlrm
CustomerBalanceTransaction.php34970644editdlrm
Discount.php18000644editdlrm
Invoice.php169470644editdlrm
InvoiceLineItem.php65620644editdlrm
Logger.php6550644editdlrm
Payment.php55850644editdlrm
PaymentMethod.php25830644editdlrm
Subscription.php354930644editdlrm
SubscriptionBuilder.php121340644editdlrm
SubscriptionItem.php71890644editdlrm
Tax.php20540644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/cashier/src/Tax.php (2054B)
amount = $amount; $this->currency = $currency; $this->taxRate = $taxRate; } /** * Get the applied currency. * * @return string */ public function currency() { return $this->currency; } /** * Get the total tax that was paid (or will be paid). * * @return string */ public function amount() { return $this->formatAmount($this->amount); } /** * Get the raw total tax that was paid (or will be paid). * * @return int */ public function rawAmount() { return $this->amount; } /** * Format the given amount into a displayable currency. * * @param int $amount * @return string */ protected function formatAmount($amount) { return Cashier::formatAmount($amount, $this->currency); } /** * Determine if the tax is inclusive or not. * * @return bool */ public function isInclusive() { return $this->taxRate->inclusive; } /** * @return \Stripe\TaxRate */ public function taxRate() { return $this->taxRate; } /** * Dynamically get values from the Stripe object. * * @param string $key * @return mixed */ public function __get($key) { return $this->taxRate->{$key}; } }