Folkloreatelier / laravel-panneau by dmongeau

1,085
2
4
Package Data
Maintainer Username: dmongeau
Maintainer Contact: info@folklore.email (Folklore)
Package Create Date: 2017-08-21
Package Last Update: 2023-07-12
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:04:57
Package Statistics
Total Downloads: 1,085
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 2
Total Watchers: 4
Total Forks: 0
Total Open Issues: 22

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/