https://github.com/folkloreinc/laravel-panneau
Laravel package to create administration dashboards
https://github.com/folkloreinc/laravel-panneau
laravel
Last synced: about 1 year 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-02-18T20:51:30.000Z (over 1 year ago)
- Last Synced: 2025-03-26T11:21:40.261Z (about 1 year ago)
- Topics: laravel
- Language: PHP
- Size: 30.6 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Laravel Panneau
[](https://packagist.org/packages/folklore/laravel-panneau)
[](https://travis-ci.org/Folkloreatelier/laravel-panneau)
[](https://coveralls.io/github/Folkloreatelier/laravel-panneau?branch=v1-rc)
[](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/`