Multi Purpose Product Catalogs, Inspired By Wordpress Post And Wordpress Custom Fiels (Meta)
You can install the package via composer:
composer require erkurn/laravel-product-catalog
You can publish and run the migrations with:
php artisan vendor:publish --tag="laravel-product-catalog-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="laravel-product-catalog-config"
This is the contents of the published config file:
return [
// Override Product Model For Extends Features, like Adding Spatie Media Library or Slug Generator
'model' => \Erkurn\LaravelProductCatalog\Models\ProductCatalog::class,
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="laravel-product-catalog-views"
- create product catalog
- sync metas data
- search by meta name and value
- search by meta values
- search by sku
- get product collections by status
- make product variants
- add simple pricing
TODO
composer test
Please see CHANGELOG for more information on what has changed recently.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.