Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/folkloreinc/laravel-panneau

Laravel package to create administration dashboards
https://github.com/folkloreinc/laravel-panneau

laravel

Last synced: about 2 months ago
JSON representation

Laravel package to create administration dashboards

Awesome Lists containing this project

README

        

# Laravel Panneau

[![Latest Stable Version](https://poser.pugx.org/folklore/laravel-panneau/v/stable.svg)](https://packagist.org/packages/folklore/laravel-panneau)
[![Build Status](https://travis-ci.org/Folkloreatelier/laravel-panneau.png?branch=v1-rc)](https://travis-ci.org/Folkloreatelier/laravel-panneau)
[![Coverage Status](https://coveralls.io/repos/Folkloreatelier/laravel-panneau/badge.svg?branch=v1-rc&service=github)](https://coveralls.io/github/Folkloreatelier/laravel-panneau?branch=v1-rc)
[![Total Downloads](https://poser.pugx.org/folklore/laravel-panneau/downloads.svg)](https://packagist.org/packages/folklore/laravel-panneau)

## Installation

```shell
composer require folklore/laravel-panneau:dev-v1-rc
```

### Laravel 5.4 and lower

**1-** Add the service provider to your `app/config/app.php` file

```php
Folklore\Panneau\PanneauerviceProvider::class,
```

**2-** Add the facade to your `app/config/app.php` file

```php
'Panneau' => Folklore\Panneau\Facades\Panneau::class,
```

### All versions

**1-** Publish the configuration file and public files

```bash
$ php artisan vendor:publish
```

**2-** Add this to `app/Providers/RouteServiceProvider.php`

```php
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{
$this->mapApiRoutes();

$this->mapWebRoutes();

app('panneau')->routes();
}
```

**3-** Review the following files:
- Configuration: `config/panneau.php`
- Routes: `routes/panneau.php`
- Views: `resources/views/vendor/panneau/`
- Assets: `resources/assets/vendor/panneau/`