divotek/admin

Platform for back-office applications, admin panel or CMS your Laravel app.

v10.0.6 2023-10-12 11:27 UTC

This package is auto-updated.

Last update: 2024-04-08 17:18:50 UTC


README

Based on Orchid Platform.

For the full documentation, visit orchid.software.

This is a free Laravel package that abstracts standard business logic and allows code-driven rapid application development of back-office applications, admin/user panels, and dashboards.

Implemented features

  • Native support for nakukryskin/orchid-repeater-field

  • Native support for nakipelo/orchid-ckeditor

  • Custom Command Bar with actions ('Go Back', 'Save and Leave', etc.)

  • Automatic nested tables (requires model relation called children, e.g. $product->children)

  • Custom slug fields for automatic slug generation

  • Native support for barryvdh/laravel-elfinder

  • Activity Log

  • Minor improvements

Install

  • Create project
composer create-project laravel/laravel my-awesome-admin
  • Configure .env

  • Install main admin package

composer require divotek/admin
  • Publish package config & assets
php artisan admin:install
  • Configure main admin credentials
php artisan admin:make

Local Development

  • Download source code

  • Extract archive

  • Make your magic in extracted directory

  • Build frontend for modified admin panel:

npm i & npm run production
  • Edit your project composer.json and add/modify the following directives:
"require": {
    "divotek/admin": "dev-main",
    ...
},
"repositories": [
    {
        "type": "path",
        "url": "../path/to/extracted/directory"
    },
    ...
]
  • In your project directory remove vendor dir and composer.lock file

  • Run following command:

composer install