https://github.com/renderbittechnologies/adminlte
AdminLTE integration for Laravel 5
https://github.com/renderbittechnologies/adminlte
admin-dashboard adminlte adminlte2 laravel laravel-5-package
Last synced: 2 months ago
JSON representation
AdminLTE integration for Laravel 5
- Host: GitHub
- URL: https://github.com/renderbittechnologies/adminlte
- Owner: RenderbitTechnologies
- License: mit
- Created: 2017-01-21T10:44:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-03T13:52:53.000Z (over 6 years ago)
- Last Synced: 2025-01-18T16:49:56.239Z (4 months ago)
- Topics: admin-dashboard, adminlte, adminlte2, laravel, laravel-5-package
- Language: HTML
- Homepage: https://packagist.org/packages/renderbit-technologies/adminlte
- Size: 9.77 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AdminLTE
[](https://travis-ci.org/renderbit-technologies/adminlte)
[](https://styleci.io/repos/CHANGEME)
[](https://scrutinizer-ci.com/g/renderbit-technologies/adminlte/?branch=master)
[](https://insight.sensiolabs.com/projects/CHANGEME)
[](https://coveralls.io/github/renderbit-technologies/adminlte?branch=master)[](https://packagist.org/packages/renderbit-technologies/adminlte)
[](https://packagist.org/packages/renderbit-technologies/adminlte)
[](https://packagist.org/packages/renderbit-technologies/adminlte)AdminLTE integration for Laravel 5
## Installation
Install via composer
```bash
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
```php
RenderbitTechnologies\AdminLTE\ServiceProvider::class,
```### Register Facade
Register package facade in `config/app.php` in `aliases` section
```php
RenderbitTechnologies\AdminLTE\Facades\AdminLTE::class,
```### Publish Configuration File
```bash
php artisan vendor:publish --provider="RenderbitTechnologies\AdminLTE\ServiceProvider" --tag="config"
```### Publish Assets
```bash
php artisan vendor:publish --provider="RenderbitTechnologies\AdminLTE\ServiceProvider" --tag="assets"
```## Security
If you discover any security related issues, please email [email protected]
instead of using the issue tracker.## Credits
- [Renderbit Technologies](https://github.com/renderbit-technologies/adminlte)
- [All contributors](https://github.com/renderbit-technologies/adminlte/graphs/contributors)This package is bootstrapped with the help of
[melihovv/laravel-package-generator](https://github.com/melihovv/laravel-package-generator).