PHPackages                             misaf/vendra-currency - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. misaf/vendra-currency

ActiveVendra-module[Utility &amp; Helpers](/categories/utility)

misaf/vendra-currency
=====================

Multi-currency support system with translatable content and hierarchical currency categories

11[4 issues](https://github.com/misaf/vendra-currency/issues)PHPCI failing

Since Feb 26Pushed 2mo agoCompare

[ Source](https://github.com/misaf/vendra-currency)[ Packagist](https://packagist.org/packages/misaf/vendra-currency)[ RSS](/packages/misaf-vendra-currency/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Vendra Currency
===============

[](#vendra-currency)

Tenant-aware currency management for Laravel + Filament.

Features
--------

[](#features)

- Currency categories
- Currencies with buy/sell pricing and conversion rate
- Filament resources on the `admin` panel

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11 or 12
- Filament 4
- `misaf/vendra-tenant`
- `misaf/vendra-activity-log`

Installation
------------

[](#installation)

```
composer require misaf/vendra-currency
php artisan vendor:publish --tag=vendra-currency-migrations
php artisan migrate
```

Optional translations publish:

```
php artisan vendor:publish --tag=vendra-currency-translations
```

The service provider and Filament plugin are auto-registered.

Usage
-----

[](#usage)

Create a currency category:

```
use Misaf\VendraCurrency\Models\CurrencyCategory;

$category = CurrencyCategory::query()->create([
    'name' => 'Fiat',
    'description' => 'Government-issued currencies',
    'slug' => 'fiat',
    'position' => 1,
    'status' => true,
]);
```

Create a currency:

```
use Misaf\VendraCurrency\Models\Currency;

Currency::query()->create([
    'currency_category_id' => $category->id,
    'name' => 'US Dollar',
    'description' => 'United States Dollar',
    'slug' => 'usd',
    'iso_code' => 'USD',
    'conversion_rate' => 1,
    'decimal_place' => 2,
    'buy_price' => 100000,
    'sell_price' => 99500,
    'is_default' => true,
    'position' => 1,
    'status' => true,
]);
```

Load currencies with their category:

```
$currencies = Currency::query()
    ->with('currencyCategory')
    ->where('status', true)
    ->get();
```

Filament
--------

[](#filament)

Resources are available in the `Currencies` cluster on the `admin` panel:

- Currency Categories
- Currencies

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

MIT. See [LICENSE](LICENSE).

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/41fd7351d25e29dafa18068d0418eecf6bb47a7473aabe6bc674b4ca35e71805?d=identicon)[misaf](/maintainers/misaf)

---

Top Contributors

[![misaf](https://avatars.githubusercontent.com/u/8195685?v=4)](https://github.com/misaf "misaf (1 commits)")

### Embed Badge

![Health badge](/badges/misaf-vendra-currency/health.svg)

```
[![Health](https://phpackages.com/badges/misaf-vendra-currency/health.svg)](https://phpackages.com/packages/misaf-vendra-currency)
```

###  Alternatives

[ajbdev/cronlingo

Express crontabs as human readable phrases

14651.4k](/packages/ajbdev-cronlingo)[cytopia/awesome-ci

Lot's of tools for git, file and static source code analysis.

3386.4k](/packages/cytopia-awesome-ci)[vich/geographical-bundle

Geographical functionality for ORM and ODM entities and JavaScript maps rendering

10428.0k](/packages/vich-geographical-bundle)[frequenc1/newage-ipsum

A new aged ipsum generator inspired/ported to php by Seb Pearce https://github.com/sebpearce/bullshit

32252.3k](/packages/frequenc1-newage-ipsum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
