seguce92/laravel-adminmd

Laravel Admin Material Design template

Installs: 51

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 1

Language:JavaScript

v1.3.2 2019-06-25 02:32 UTC

This package is auto-updated.

Last update: 2024-03-28 00:33:55 UTC


README

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 if laravel version is <= 5.4.

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