cgdsoftware / services
Service manager for Laravel Enso
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 3
pkg:composer/cgdsoftware/services
Requires
- cgdsoftware/core: ^8.0
 - cgdsoftware/dynamic-methods: ^2.0
 - cgdsoftware/forms: ^4.0
 - cgdsoftware/helpers: ^2.0
 - cgdsoftware/measurement-units: ^3.0
 - cgdsoftware/tables: ^4.0
 
README
Services package is an extesion of the Laravel Liberu enviroment, designed for services management.
Note: This package cannot be used outside of enso enviroment and is not included in Laravel Liberu Core packages.
Features
- crud operations for services
 - includes seeders & factories
 - includes front-end assets
 - tests
 
Instalation
- install the package using composer: 
composer require laravel-enso/services - adds the following alias in 
webackpack.mix.js 
.webpackConfig({
        resolve: {
            extensions: ['.js', '.vue', '.json'],
            alias: {
                 //other aliases
                '@services': `${__dirname}/vendor/laravel-enso/services/src/resources/js`,
            },
        },
    })
- in 
resources/js/router.jsfile, verify thatRouteMergeris imported, or import it 
import RouteMerger from '@core-modules/importers/RouteMerger';
- make sure 
routeImporteris also imported 
import routeImporter from '@core-modules/importers/routeImporter';
- then use 
RouteMergerto import front-end assets using the alias defined inwebpack.mix.js 
(new RouteMerger(routes))
    .add(routeImporter(require.context('./routes', false, /.*\.js$/)))
    .add(routeImporter(require.context('@services/routes', false, /.*\.js$/)));
- in 
resources/js/app.jsimport the package's icons 
import '@services/icons'
- make sure 
hot module replacementis not active, and runyarn devornpm run dev 
Publishes
- you can publish the product seeder and customize it to your liking
 
php artisan vendor:publish --tag=services-factories
Icons
The package uses the following icons:
hand-holding-usd
Contributions
are welcome. Pull requests are great, but issues are good too.
License
This package is released under the MIT license.