renderbit-technologies / adminlte
AdminLTE integration for Laravel 5
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=5.6
- almasaeed2010/adminlte: ^2.4
- illuminate/support: ~5.7.0
Requires (Dev)
- orchestra/testbench: ~3.7.0
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-11-14 20:06:25 UTC
README
AdminLTE integration for Laravel 5
Installation
Install via composer
composer require renderbit-technologies/adminlte
Register Service Provider
Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.
Add service provider to config/app.php
in providers
section
RenderbitTechnologies\AdminLTE\ServiceProvider::class,
Register Facade
Register package facade in config/app.php
in aliases
section
RenderbitTechnologies\AdminLTE\Facades\AdminLTE::class,
Publish Configuration File
php artisan vendor:publish --provider="RenderbitTechnologies\AdminLTE\ServiceProvider" --tag="config"
Publish Assets
php artisan vendor:publish --provider="RenderbitTechnologies\AdminLTE\ServiceProvider" --tag="assets"
Security
If you discover any security related issues, please email contact@renderbit.com instead of using the issue tracker.
Credits
This package is bootstrapped with the help of melihovv/laravel-package-generator.