WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
laravel
/
cashier
/
src
/
Name
Action
..
Billable.php
Edit
Card.php
Edit
Cashier.php
Edit
CashierServiceProvider.php
Edit
Http
Invoice.php
Edit
InvoiceItem.php
Edit
Subscription.php
Edit
SubscriptionBuilder.php
Edit
Editing: Cashier.php
<?php namespace Laravel\Cashier; use Exception; class Cashier { /** * The current currency. * * @var string */ protected static $currency = 'usd'; /** * The current currency symbol. * * @var string */ protected static $currencySymbol = '$'; /** * The custom currency formatter. * * @var callable */ protected static $formatCurrencyUsing; /** * Get the class name of the billable model. * * @return string */ public static function stripeModel() { return getenv('STRIPE_MODEL') ?: config('services.stripe.model', 'App\\User'); } /** * Set the currency to be used when billing Stripe models. * * @param string $currency * @param string|null $symbol * @return void */ public static function useCurrency($currency, $symbol = null) { static::$currency = $currency; static::useCurrencySymbol($symbol ?: static::guessCurrencySymbol($currency)); } /** * Guess the currency symbol for the given currency. * * @param string $currency * @return string * @throws \Exception */ protected static function guessCurrencySymbol($currency) { switch (strtolower($currency)) { case 'usd': case 'aud': case 'cad': return '$'; case 'eur': return '€'; case 'gbp': return '£'; default: throw new Exception('Unable to guess symbol for currency. Please explicitly specify it.'); } } /** * Get the currency currently in use. * * @return string */ public static function usesCurrency() { return static::$currency; } /** * Set the currency symbol to be used when formatting currency. * * @param string $symbol * @return void */ public static function useCurrencySymbol($symbol) { static::$currencySymbol = $symbol; } /** * Get the currency symbol currently in use. * * @return string */ public static function usesCurrencySymbol() { return static::$currencySymbol; } /** * Set the custom currency formatter. * * @param callable $callback * @return void */ public static function formatCurrencyUsing(callable $callback) { static::$formatCurrencyUsing = $callback; } /** * Format the given amount into a displayable currency. * * @param int $amount * @return string */ public static function formatAmount($amount) { if (static::$formatCurrencyUsing) { return call_user_func(static::$formatCurrencyUsing, $amount); } $amount = number_format($amount / 100, 2); if (starts_with($amount, '-')) { return '-'.static::usesCurrencySymbol().ltrim($amount, '-'); } return static::usesCurrencySymbol().$amount; } }