Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/folkloreinc/laravel-panneau
- Owner: folkloreinc
- Created: 2017-08-21T15:14:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T14:22:40.000Z (4 months ago)
- Last Synced: 2024-10-26T13:43:28.593Z (2 months ago)
- Topics: laravel
- Language: PHP
- Size: 30.6 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: Readme.md
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/`