seguce92 / laravel-adminmd by seguce92

Laravel Admin Material Design template
51
1
2
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: 2024-03-26 15:04:07
Package Statistics
Total Downloads: 51
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 1

Admin Material Design for Laravel 5.*

Installation

Laravel 5.x:

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

Configuration

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'
];

Examples

Show examples in public/vendor/seguce92/AdminMD

Information and Details

visit site mascodigo.net