PHP code example of pictastudio / venditio-admin
1. Go to this page and download the library: Download pictastudio/venditio-admin library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pictastudio / venditio-admin example snippets
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,
],
],
];
bash
php artisan filament:install --panels
bash
php artisan venditio-admin:install
bash
php artisan vendor:publish --tag="venditio-admin-views"
bash
php artisan vendor:publish --tag="venditio-admin-translations"