PHPackages                             misaf/vendra-product - 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. [Framework](/categories/framework)
4. /
5. misaf/vendra-product

ActiveVendra-module[Framework](/categories/framework)

misaf/vendra-product
====================

The product module for the Vendra framework.

143[1 issues](https://github.com/misaf/vendra-product/issues)PHPCI failing

Since Jun 27Pushed 2w agoCompare

[ Source](https://github.com/misaf/vendra-product)[ Packagist](https://packagist.org/packages/misaf/vendra-product)[ RSS](/packages/misaf-vendra-product/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Vendra Product
==============

[](#vendra-product)

Tenant-aware product management for Vendra applications.

Features
--------

[](#features)

- Product categories
- Products
- Product prices per currency
- Filament resources on the `admin` panel

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

[](#requirements)

- PHP 8.2+
- Laravel 12
- Filament 5
- Livewire 4
- Pest 4
- Tailwind CSS 4
- `misaf/vendra-tenant`
- `misaf/vendra-user`
- `misaf/vendra-currency`
- `misaf/vendra-activity-log`

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

[](#installation)

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

Optional translations publish:

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

The service provider and Filament plugin are auto-registered.

Usage
-----

[](#usage)

Create a category:

```
use Misaf\VendraProduct\Models\ProductCategory;

$category = ProductCategory::query()->create([
    'name' => ['en' => 'Beverages'],
    'description' => ['en' => 'Cold and hot drinks'],
    'slug' => ['en' => 'beverages'],
    'status' => true,
]);
```

Create a product:

```
use Misaf\VendraProduct\Models\Product;

$product = Product::query()->create([
    'product_category_id' => $category->id,
    'name' => ['en' => 'Orange Juice'],
    'description' => ['en' => 'Fresh and natural'],
    'slug' => ['en' => 'orange-juice'],
    'quantity' => 20,
    'stock_threshold' => 5,
    'in_stock' => true,
    'available_soon' => false,
]);
```

Add a price:

```
use Misaf\VendraProduct\Models\ProductPrice;

ProductPrice::query()->create([
    'product_id' => $product->id,
    'currency_code' => 'USD',
    'price' => 9900,
]);
```

Load products with relationships:

```
$products = Product::query()
    ->with(['productCategory', 'latestProductPrice'])
    ->get();
```

Filament
--------

[](#filament)

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

- Product Categories
- Products
- Product Prices

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

MIT. See [LICENSE](LICENSE).

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance43

Moderate activity, may be stable

Popularity13

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

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 (30 commits)")

### Embed Badge

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

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

###  Alternatives

[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k39.6M297](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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