PHPackages                             viart/dashboard - 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. [Framework](/categories/framework)
4. /
5. viart/dashboard

ActiveLibrary[Framework](/categories/framework)

viart/dashboard
===============

Dashboard for Laravel

v3.x-dev(2y ago)038MITPHPPHP ^8.1CI failing

Since Jan 20Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/Intiligent/dashboard)[ Packagist](https://packagist.org/packages/viart/dashboard)[ RSS](/packages/viart-dashboard/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (19)Versions (3)Used By (0)

[![](https://raw.githubusercontent.com/Intiligent/dashboard/main/src/resources/img/logo.png)](https://packagist.org/packages/viart/dashboard)

Dashboard
=========

[](#dashboard)

Dashboard panel for Laravel project.

 [![](https://github.com/Intiligent/dashboard/raw/main/__UI/dashboard-1.jpg?raw=true)](https://github.com/Intiligent/dashboard/blob/main/__UI/dashboard-1.jpg?raw=true) [![](https://github.com/Intiligent/dashboard/raw/main/__UI/dashboard-2.jpg?raw=true)](https://github.com/Intiligent/dashboard/blob/main/__UI/dashboard-2.jpg?raw=true) [![](https://github.com/Intiligent/dashboard/raw/main/__UI/dashboard-3.jpg?raw=true)](https://github.com/Intiligent/dashboard/blob/main/__UI/dashboard-3.jpg?raw=true)

Install
-------

[](#install)

1. Installation via Composer

```
composer require viart/dashboard
```

2. Install dashboard scaffolding

```
php artisan dashboard:install
```

3. Exception
4. dashboard 404
5. RedirectIfAuthenticated make duplicate. add check on already exist
6. MenuSeeder make duplicate. fix it

[Documentation](__DOC/index.md)

Improve app
-----------

[](#improve-app)

1. Add db string limited

```
namespace App\Providers;

use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        Schema::defaultStringLength(191);
    }
}
```

2. RouteServiceProvider uncomment

```
protected $namespace = 'App\\Http\\Controllers';
```

3. Add response and pass csrf token to front

```
