2017 © Pedro Peláez
 

library spider-admin

make AdminLTE for laravel 5.3

image

ken/spider-admin

make AdminLTE for laravel 5.3

  • Wednesday, February 22, 2017
  • by kenhyuwa
  • Repository
  • 1 Watchers
  • 2 Stars
  • 70 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Spider-AdminLTE for laravel 5.3.*

a.png, (*1)

About Spider-AdminLTE

diaddemibr/, (*2)

Spider-AdminLTE is packages for build dashboard admin make AdminLTE 2 | Dashboard - Almsaeed Studio, just install this packages you get dashboard admin AdminLTE 2 | Dashboard - Almsaeed Studio, SweetAlert2, animate.cssbr/ Thanks to :br/ AdminLTE 2 | Dashboard - Almsaeed Studiobr/ SweetAlert2br/ animate.cssbr/, (*3)

Installations

Using Composer, (*4)

composer require ken/spider-admin

Add the service provider to config/app.php, (*5)


'providers' => [ Ken\SpiderAdmin\SpiderAdminServiceProvider::class, Collective\Html\HtmlServiceProvider::class, // laravelcollective/html class Intervention\Image\ImageServiceProvider::class, // intervention/image class ] 'aliases' => [ 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, 'Image' => Intervention\Image\Facades\Image::class, ]

and running, (*6)

php artisan vendor:publish
php artisan migrate
composer dump-autoload
php artisan db:seed --class=SpiderSeeder



## Setting Models Authenticate open file in `config/auth.php` edit file ```php 'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => App\User::class, ], // 'users' => [ // 'driver' => 'database', // 'table' => 'users', // ], ],
to be
'providers' => [
        'users' => [
            'driver' => 'eloquent',
            'model' => App\Models\User::class,
        ],

        // 'users' => [
        //     'driver' => 'database',
        //     'table' => 'users',
        // ],
    ],
## Setting Kernel place this code in to `App\Http\Kernel.php`
protected $routeMiddleware = [
        'spider' => \Ken\SpiderAdmin\App\Http\Middleware\SpiderToRedirect::class,
    ];
## Usage You can custom `views/vendor/spider/partials/customize/sidebar-menu.blade.php` for managemen menu App.<br/> You can custom `views/vendor/spider/partials/customize/dropdown.blade.php` for notifications If you create new blade, you must extends yours file like
@extends('spider::layouts.apps')

@section('content')
    // yours content in here
@endsection
You can also create new file Javascript and CSS,
@section('css')
    // yours css in here 
@endsection

@section('script')
    // yours script in here 
@endsection
You can also create new `Route` in `Routes/web.php` and its no problem. but, you must create route prefix like
<?php 

Route::group(['prefix' => 'spider'] , function() {
   // yours route in here
});
if you not change route prefix yours App, or like
<?php 

Route::group(['prefix' => config('spider.config.route_prefix')] , function() {
   // yours route in here
});
if you change route prefix yours App. You can customize `config/spider/config.php` for identity yours app and yours route prefix
<?php

return [
    'title_name'            => 'Spider-AdminLTE',
    'title_name_login'      => 'Spider-AdminLTE',
    'route_prefix'          => 'spider',
    'application_name_mini' => '<b><i>-d</i></b>',
    'application_name'      => '<b>Spider</b><i>-AdminLTE</i>',
    'developer_web'         => 'https://www.diaddemi.web.id',
    'developer_name'        => 'Wahyu Dhira Ashandy'
];
### Basic Route Basic
localhost:8000/spider
````
Auth Basic

Basic Credentials this App is fields `name` or  fields `email` from table `users`

username : spider `or` spider@diaddemi.web.id password : spider

Issues and contribution

Just submit an issue or pull request through GitHub. Thanks!, (*7)

The Versions

22/02 2017

dev-master

9999999-dev

make AdminLTE for laravel 5.3

  Sources   Download

MIT

The Requires

 

28/12 2016
04/12 2016
29/11 2016

1.0.0

1.0.0.0

make AdminLTE for laravel 5.3

  Sources   Download

MIT

The Requires