*/ use HasFactory; /** * The supported currency codes. */ const USD = 'USD'; const SAR = 'SAR'; protected $fillable = [ 'code', 'name', 'symbol', ]; /** * Get all supported currency codes */ public static function supportedCurrencies(): array { return [ self::USD, self::SAR, ]; } }