ladmin / engine
Ladmin Engine is an package to support Laravel Admin scaffolding.
Installs: 1 270
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- hexters/laramodule: 4.*
- laravel/scout: 9.*
README
Follow the steps below to get started faster! Add the repository by running the command below.
$ composer require ladmin/engine
Follow the installation
$ php artisan ladmin:install --and=[OPOTIONS]
Run migrate and seed, to install ladmin database tables
$ php artisan migrate --seed
Managing assets
Install node module pacakge
npm install -s @hexters/ladmin-vite-input
Open vite.config.js
in your project and follow the instruction below.
. . . import ladminViteInputs from '@hexters/ladmin-vite-input' . . . export default defineConfig({ plugins: [ laravel({ input: ladminViteInputs([ 'resources/css/app.css', 'resources/js/app.js' ]), refresh: true, }), ], });
📖 Documentation
View complete Documentation here