PHPackages                             ken/spider-admin - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. ken/spider-admin

ActiveLibrary[Admin Panels](/categories/admin)

ken/spider-admin
================

make AdminLTE for laravel 5.3

1.0.2(9y ago)2784MITJavaScriptPHP &gt;=5.6.4

Since Nov 29Pushed 9y ago1 watchersCompare

[ Source](https://github.com/kenhyuwa/spider-admin)[ Packagist](https://packagist.org/packages/ken/spider-admin)[ RSS](/packages/ken-spider-admin/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (4)Versions (4)Used By (0)

\#Spider-AdminLTE for laravel 5.3.\* [![a.png](https://camo.githubusercontent.com/53a2619f258ff280949c9f8777e4aba1adc687b5e050bc531c62a54f15bb5892/68747470733a2f2f7331352e706f7374696d672e6f72672f756862326d396c33662f696d6167652e706e67)](https://postimg.org/image/qkxqqa03r/)

About Spider-AdminLTE
---------------------

[](#about-spider-adminlte)

[diaddemi](https://www.diaddemi.web.id)

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](https://almsaeedstudio.com/themes/AdminLTE/index2.html), [SweetAlert2](https://limonte.github.io/sweetalert2), [animate.css](https://daneden.github.io/animate.css)
Thanks to :
[AdminLTE 2 | Dashboard - Almsaeed Studio](https://almsaeedstudio.com/themes/AdminLTE/index2.html)
[SweetAlert2](https://limonte.github.io/sweetalert2)
[animate.css](https://daneden.github.io/animate.css)

Installations
-------------

[](#installations)

Using Composer

```
composer require ken/spider-admin

```

Add the service provider to `config/app.php`

```
'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

```
php artisan vendor:publish

```

```
php artisan migrate

```

```
composer dump-autoload

```

```
php artisan db:seed --class=SpiderSeeder

```

Setting Models Authenticate
---------------------------

[](#setting-models-authenticate)

open file in `config/auth.php`edit file

```
'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
--------------

[](#setting-kernel)

place this code in to `App\Http\Kernel.php`

```
protected $routeMiddleware = [
        'spider' => \Ken\SpiderAdmin\App\Http\Middleware\SpiderToRedirect::class,
    ];
```

Usage
-----

[](#usage)

You can custom `views/vendor/spider/partials/customize/sidebar-menu.blade.php` for managemen menu App.
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

```
