| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | 
							- <?php
 - 
 - namespace App\Utilities\Currency;
 - 
 - use App\Facades\Forex;
 - use Filament\Forms\Set;
 - 
 - class CurrencyConverter
 - {
 -     public static function convertAndSet($newCurrency, $oldCurrency, $amount): ?string
 -     {
 -         if ($newCurrency === null || $oldCurrency === $newCurrency) {
 -             return null;
 -         }
 - 
 -         $old_attr = currency($oldCurrency);
 -         $new_attr = currency($newCurrency);
 -         $temp_amount = str_replace([$old_attr->getThousandsSeparator(), $old_attr->getDecimalMark()], ['', '.'], $amount);
 - 
 -         return number_format((float) $temp_amount, $new_attr->getPrecision(), $new_attr->getDecimalMark(), $new_attr->getThousandsSeparator());
 -     }
 - 
 -     public static function convertBalance(int $amount, string $oldCurrency, string $newCurrency): int
 -     {
 -         return money($amount, $oldCurrency)->swapAmountFor($newCurrency);
 -     }
 - 
 -     public static function prepareForMutator(int $amount, string $currency): string
 -     {
 -         return money($amount, $currency)->formatSimple();
 -     }
 - 
 -     public static function prepareForAccessor(string $amount, string $currency): int
 -     {
 -         return money($amount, $currency, true)->getAmount();
 -     }
 - 
 -     public static function convertToCents(string | float $amount, ?string $currency = null): int
 -     {
 -         $currency ??= CurrencyAccessor::getDefaultCurrency();
 - 
 -         return money($amount, $currency, true)->getAmount();
 -     }
 - 
 -     public static function formatCentsToMoney(int $amount, ?string $currency = null): string
 -     {
 -         $currency ??= CurrencyAccessor::getDefaultCurrency();
 - 
 -         return money($amount, $currency)->format();
 -     }
 - 
 -     public static function handleCurrencyChange(Set $set, $state): void
 -     {
 -         $currency = currency($state);
 -         $defaultCurrencyCode = CurrencyAccessor::getDefaultCurrency();
 -         $forexEnabled = Forex::isEnabled();
 -         $exchangeRate = $forexEnabled ? Forex::getCachedExchangeRate($defaultCurrencyCode, $state) : null;
 - 
 -         $set('name', $currency->getName() ?? '');
 - 
 -         if ($forexEnabled && $exchangeRate !== null) {
 -             $set('rate', $exchangeRate);
 -         }
 -     }
 - }
 
 
  |