https://github.com/hexters/ladmin-engine
https://github.com/hexters/ladmin-engine
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/hexters/ladmin-engine
- Owner: hexters
- License: mit
- Created: 2023-01-26T07:17:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T08:44:36.000Z (over 2 years ago)
- Last Synced: 2025-03-16T14:57:08.678Z (about 1 year ago)
- Language: PHP
- Size: 1.36 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⚙️ Ladmin Engine
Follow the steps below to get started faster! Add the repository by running the command below.
```bash
$ composer require ladmin/engine
```
Follow the installation
```
$ php artisan ladmin:install --and=[OPOTIONS]
```
Run migrate and seed, to install ladmin database tables
```bash
$ php artisan migrate --seed
```
# Managing assets
Install node module pacakge
```bash
npm install -s @hexters/ladmin-vite-input
```
Open `vite.config.js` in your project and follow the instruction below.
```js
. . .
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](https://github.com/hexters/ladmin/wiki)