12345678910111213141516171819 |
- <?php
-
- namespace App\Faker;
-
- use App\Models\Locale\Country;
- use Faker\Provider\Base;
- use OutOfBoundsException;
-
- class CurrencyCode extends Base
- {
- public function currencyCode(string $countryCode): string
- {
- try {
- return Country::where('id', $countryCode)->pluck('currency_code')->first();
- } catch (OutOfBoundsException $e) {
- return 'MYR';
- }
- }
- }
|