Package Data | |
---|---|
Maintainer Username: | seguce92 |
Maintainer Contact: | seguce92@gmail.com (Sergio Gualberto Cruz Espinoza) |
Package Create Date: | 2017-02-02 |
Package Last Update: | 2019-10-31 |
Language: | JavaScript |
License: | MIT |
Last Refreshed: | 2025-01-14 03:00:56 |
Package Statistics | |
---|---|
Total Downloads: | 52 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 1 |
You can install the package for your Laravel 5 project through Composer.
$ composer require seguce92/laravel-adminmd
Register the service provider array in app/config/app.php
.
Seguce92\AdminMD\ServiceProvider::class,
Collective\Html\HtmlServiceProvider::class,
You register use the facade for shorter code. Add this to your facades in array aliases
:
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
Export setting file and resources with command:
$ php artisan vendor:publish
To start using the file manager perform the respective configuration in the file app\config\seguce92\filemanager.php
<?php
/**
* @package AdminMD
*/
return [
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------
* COLOR SIDEBAR THEME
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*
* themes available [amber, black, blue-grey, blue, brown, cyan, deep-orange, deep-purple, green, grey, indigo, light-blue, lime, orange, pink, purple, red, teal, yellow]
*/
'theme' => 'deep-purple'
];
Show examples in public/vendor/seguce92/AdminMD
visit site mascodigo.net