mushmero/lapdash

Laravel Admin Panel boilerplate with Permission, Roles & User Module to start building your application

2.8.0 2024-03-20 13:16 UTC

This package is auto-updated.

Last update: 2024-04-20 13:31:22 UTC


README

LapDash Logo

Issues Pull Request MIT License

About LAPDash

LapDash is shortform for Laravel Admin Panel Dashbord which is an admin panel dashboard scaffold initial build on top of Laravel 9, AdminLTE Ui & Bootstrap 4. It is a powerful scaffold to start build your MVP application as it already consist User Module, Roles Module, Permissions Module and Activity Logs Module. Now support Laravel 10.

Some of the features exist in this repository are

  • Auto Logout when inactive
  • Detailed activity logging
  • Powerfull Roles & Permissions module
  • Fully Customizable

Use the package with laravel and start build your mvp apps

Pre-requisites

  • Lapdash require vite to work
  • Install package vite & laravel-vite-plugin
  • add/replace vite.config.js as below
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';

export default defineConfig({
    plugins: [
        laravel({
            input: [
                'resources/sass/app.scss',
                'resources/js/app.js',
            ],
            refresh: true,
        }),
    ],
});
  • make sure package.json has been update to dev : vite & prod : vite build
  • for Laravel 10 can ignore above steps as vite come as default in Laravel 10

Installation

  • composer require mushmero/lapdash
  • add Spatie\Permission\PermissionServiceProvider::class in config/app
  • add Mushmero\Lapdash\LapdashServiceProvider::class in config/app
  • php artisan lapdash:initialize
  • php artisan appversion:sync --major=? --minor=? --build=? (replace ? with your version)
  • npm install
  • npm run dev for development
  • npm run prod for production
  • use php artisan lapdash:db-setup for project deployment

Default Login

Username: admin@lapdash.com
Password: Sup3r@dm!n

Information

  • Initialize command can be run only once.
  • For new fresh project deployment.
  • Not for existing project.

License

LapDash is open-sourced software licensed under the MIT license.