yp-code/ripple


Keywords
laravel, admin-panel, laravel-admin, laravel-package, php
License
MIT

Documentation

Ripple Admin Package

Ripple

Ripple is a Laravel Admin Package that includes BREAD(CRUD), Operations, View Generator, Executing Artisan Commands and much more.


Ripple Admin Panel & BREAD System, made for laravel 5.3 to 5.5.

After creating your laravel application you can add Ripple Admin Panel to your Application with the following command

composer require gitlab/ripple:"dev-dev"

After installing Ripple Make sure you have running database connection that you can create by setting up your database details in your .env file

If your application is running below laravel v5.5 then you have to add Ripple Service Provider in your config/app.php file in the providers array.


'providers' => [
    // Laravel Framework Service Providers...
    //...
    
    // Package Service Providers
    GitLab\Ripple\Providers\RippleServiceProvider::class,
    // ...
    
    // Application Service Providers
    // ...
],

If your Laravel version is 5.5 then don't follow above process Laravel will auto discover the Ripple Admin Package.

Before using Ripple Admin Package we suggest you to run these commands : -

php artisan ripple:install

ripple:install command will copy all neccessary config files and assets to your public and config directory that will help to run our Admin Package without any errors.

as now Ripple is under development process so we suggest you not to install it in your Laravel Application we are releasing it's first beta version very soon.