pictastudio/venditio-admin is a Laravel package for this is my package venditio-admin.
It currently has 1 GitHub stars and 34 downloads on Packagist (latest version v0.1.14).
Install it with composer require pictastudio/venditio-admin.
Discover more Laravel packages by pictastudio
or browse all Laravel packages to compare alternatives.
Last updated
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
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,
],
],
];
To manage auth and permissions this package uses PictaStudio\VenditioCore\Managers\Contracts\AuthManager from the 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
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.