litecms / product
Product package for litecms.
Installs: 926
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 1
Open Issues: 3
Language:HTML
Type:lavalite-package
Requires
- php: ^7.1.3
README
Laravel package that provides product management facility for lavalite CMS.
Installation
Require this package with composer.
composer require litecms/product
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Publishing
Configuration
php artisan vendor:publish --provider="Litecms\Product\Providers\ProductServiceProvider" --tag="config"
Language
php artisan vendor:publish --provider="Litecms\Product\Providers\ProductServiceProvider" --tag="lang"
Files
php artisan vendor:publish --provider="Litecms\Product\Providers\ProductServiceProvider" --tag="storage"
Views
Publish views to resources\views\vendor directory
php artisan vendor:publish --provider="Litecms\Product\Providers\ProductServiceProvider" --tag="view"
Publishes admin view to admin theme
php artisan theme:publish --provider="Litecms\Product\Providers\ProductServiceProvider" --view="admin" --theme="admin"
Publishes public view to public theme
php artisan theme:publish --provider="Litecms\Product\Providers\ProductServiceProvider" --view="public" --theme="public"