Products is a package for the Laravel Enso environment, designed for the management of products.
Note: This package cannot be used outside of the Enso environment and is not included by default in the Laravel Enso Core package.
- crud operations for products
- measurement units enum
- includes a publishable product factory
- default supplier management
- tests
- install the package using composer:
composer require laravel-enso/products
- install the front-end ui package using yarn:
yarn add @enso-ui/products
- adds the following alias in
webackpack.mix.js
.webpackConfig({
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
//other aliases
'@products': `${__dirname}/node_modules/@enso-ui/products/src/bulma`,
},
},
})
- in
resources/js/router.js
file, verify thatRouteMerger
is imported, or import it
import RouteMerger from '@core-modules/importers/RouteMerger';
- make sure
routeImporter
is also imported
import routeImporter from '@core-modules/importers/routeImporter';
- then use
RouteMerger
to import front-end assets using the alias defined inwebpack.mix.js
(new RouteMerger(routes))
//other routes
.add(routeImporter(require.context('@products/routes', false, /.*\.js$/)))
.add(routeImporter(require.context('./routes', false, /.*\.js$/)));
- in
resources/js/app.js
import the package's icons
import '@products/icons';
-
make sure
hot module replacement
is not active, and runyarn dev
ornpm run dev
-
run
php artisan migrate
to create table, add menu, permissions etc.
- you can publish the product seeder and customize it to your liking
php artisan vendor:publish --tag=products-factories
are welcome. Pull requests are great, but issues are good too.
This package is released under the MIT license.