, (*1)
Ripple Admin Package
, (*2)
Ripple
Ripple is a Laravel Admin Package that includes BREAD(CRUD), Operations, View Generator, Executing Artisan Commands and much more., (*3)
Ripple Admin Panel & BREAD System, made for laravel 5.3 to 5.5., (*4)
After creating your laravel application you can add Ripple Admin Panel to your Application with the following command, (*5)
composer require ypc/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, (*6)
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., (*7)
'providers' => [
// Laravel Framework Service Providers...
//...
// Package Service Providers
YPC\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., (*8)
Before using Ripple Admin Package we suggest you to run these commands : -, (*9)
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., (*10)
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.
, (*11)