dev-feature/filters
dev-feature/filters
The Requires
- php >=5.4.0
- illuminate/support 4.2.*
by Matteo Rosati
Wallogit.com
2017 © Pedro Peláez
Ad administration package for the Laravel framework., (*1)
To use Laradmin in your Laravel project, you first have to include it in your
composer.json dependencies. Refer to https://packagist.org/packages/mrosati84/laradmin
to get the right version of the package (since it is under active development,
I suggest you to always use the dev-develop branch)., (*2)
Your Composer "require" section should look like this on an empty Laravel
installation:, (*3)
"require": {
"laravel/framework": "4.2.*",
"mrosati84/laradmin": "dev-develop"
}
next step is to run Composer update:, (*4)
$ php /path/to/composer.phar update
you can now install package assets, it's required by Laradmin to render pages correctly (Laradmin uses Twitter Bootstrap) for the frontend, and some javascript libraries as jQuery and AngularJS:, (*5)
$ php artisan asset:publish mrosati84/laradmin
you should publish package configuration as well:, (*6)
$ php artisan config:publish mrosati84/laradmin
optionally you can also publish package views, if you need to customize the frontend:, (*7)
$ php artisan view:publish mrosati84/laradmin
All the configuration is handled by the package configuration file that you
have just published under config/packages/mrosati84/laradmin/config.php., (*8)