PHPackages                             pictastudio/venditio-admin - 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. pictastudio/venditio-admin

ActiveLibrary

pictastudio/venditio-admin
==========================

This is my package venditio-admin

v0.1.14(1y ago)134[1 PRs](https://github.com/pictastudio/venditio-admin/pulls)MITPHPPHP ^8.1

Since Mar 12Pushed 1y ago2 watchersCompare

[ Source](https://github.com/pictastudio/venditio-admin)[ Packagist](https://packagist.org/packages/pictastudio/venditio-admin)[ Docs](https://github.com/pictastudio/venditio-admin)[ GitHub Sponsors](https://github.com/pictastudio)[ RSS](/packages/pictastudio-venditio-admin/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (10)Versions (18)Used By (0)

This is my package venditio-admin
=================================

[](#this-is-my-package-venditio-admin)

[![Latest Version on Packagist](https://camo.githubusercontent.com/362f62db44faba65be16a5c236dc2606f0e14f551afa90ff50bca981bbdeefaa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f706963746173747564696f2f76656e646974696f2d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pictastudio/venditio-admin)[![GitHub Tests Action Status](https://camo.githubusercontent.com/7614d57ac9e9f61b8b11435423dae3efb74d8bf9602a766d04ca5aadfba3bfa6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f706963746173747564696f2f76656e646974696f2d61646d696e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/pictastudio/venditio-admin/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/273d247a1772e98d02d08fe51d7c7a510f37b71d0f2e836dfe3fe9a48836898b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f706963746173747564696f2f76656e646974696f2d61646d696e2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/pictastudio/venditio-admin/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/a4914338faafdd189747954f96a6e8637160857f7f670ec57b52adbe0f50ad9c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f706963746173747564696f2f76656e646974696f2d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pictastudio/venditio-admin)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

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

[](#installation)

You can install the package via composer:

```
composer require pictastudio/venditio-admin
```

Then initialize filament with the following command

```
php artisan filament:install --panels
```

You can install the package with:

```
php artisan venditio-admin:install
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="venditio-admin-views"
```

Optionally, you can publish the translations using

```
php artisan vendor:publish --tag="venditio-admin-translations"
```

This is the contents of the published config file:

```
return [

    /*
    |--------------------------------------------------------------------------
    | Brand
    |--------------------------------------------------------------------------
    |
    | Specify the brand settings
    |
    */
    'brand' => [
        'name' => config('app.name'),
        'logo' => [
            'light' => null,
            'dark' => null,
        ],
    ],

    /*
    |--------------------------------------------------------------------------
    | Products
    |--------------------------------------------------------------------------
    |
    */
    'products' => [
        'variants' => [
            'enabled' => false,
        ],
    ],

    /*
    |--------------------------------------------------------------------------
    | Resources
    |--------------------------------------------------------------------------
    |
    | Specify the filament resources
    |
    */
    'resources' => [
        'brand' => [
            'enabled' => true,
            'class' => Resources\BrandResource::class,
        ],
        'order' => [
            'enabled' => true,
            'class' => Resources\OrderResource::class,
        ],
        'product' => [
            'enabled' => true,
            'class' => Resources\ProductResource::class,
            'relation_managers' => [
                'product_items' => [
                    'enabled' => true,
                    'class' => ProductItemsRelationManager::class,
                ],
            ],
        ],
        'product_category' => [
            'enabled' => true,
            'class' => Resources\ProductCategoryResource::class,
        ],
        'user' => [
            'enabled' => true,
            'class' => Resources\UserResource::class,
        ],
    ],
];
```

Auth
----

[](#auth)

To manage auth and permissions this package uses `PictaStudio\VenditioCore\Managers\Contracts\AuthManager` from the [core](https://github.com/pictastudio/venditio-core) package. In order to authoriza access to the filament panel the instance of `PictaStudio\VenditioCore\Managers\Contracts\AuthManager` that is binded into the container must implement the `canAccessAdminPanel` method

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [PictaStudio](https://github.com/pictastudio)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance40

Moderate activity, may be stable

Popularity9

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 89.7% 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.

###  Release Activity

Cadence

Every ~16 days

Recently: every ~0 days

Total

16

Last Release

540d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/871c609368b67370ee8c9a0e1077d94ece3b358ee39703a5bdae118c0159f1b1?d=identicon)[pictastudio](/maintainers/pictastudio)

---

Top Contributors

[![Frameck](https://avatars.githubusercontent.com/u/77396783?v=4)](https://github.com/Frameck "Frameck (26 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")[![pictastudio](https://avatars.githubusercontent.com/u/160235317?v=4)](https://github.com/pictastudio "pictastudio (1 commits)")

---

Tags

laravelpictastudiovenditio-admin

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/pictastudio-venditio-admin/health.svg)

```
[![Health](https://phpackages.com/badges/pictastudio-venditio-admin/health.svg)](https://phpackages.com/packages/pictastudio-venditio-admin)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)

PHPackages © 2026

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