folklore/laravel-panneau

1,445 2
Install
composer require folklore/laravel-panneau
Latest Version:v0.2.1
PHP:^8.0
License:MIT
Last Updated:Jul 28, 2026
Links: GitHub  ·  Packagist
Maintainer: dmongeau

Laravel Panneau

Latest Stable Version Build Status Coverage Status Total Downloads

Installation

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

Folklore\Panneau\PanneauerviceProvider::class,

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

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

All versions

1- Publish the configuration file and public files

$ php artisan vendor:publish

2- Add this to app/Providers/RouteServiceProvider.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/

Related Packages

wobeto/twitter

Laravel 4 Service Provider to interact with twitter account, like return a colle...

135 1
andhikamaheva/date

A date library to help you work with dates in different languages

13 1
vlados/laravel-blade-crawler-detect

Boost Lighthouse and PageSpeed scores by hiding cookie banners, chat widgets and...

5,439 0
maystro/filament-popup-modal

A comprehensive modal dialog system for FilamentPHP with progress bars, callback...

7 1