芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/laravel/cashier/src/Tax.php
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}; } }