LaravelPackages.net
Acme Inc.
Toggle sidebar
folklore/laravel-panneau

1.450
2
v0.2.1
About folklore/laravel-panneau

folklore/laravel-panneau is a Laravel package. It currently has 2 GitHub stars and 1.450 downloads on Packagist (latest version v0.2.1). Install it with composer require folklore/laravel-panneau. Discover more Laravel packages by folklore or browse all Laravel packages to compare alternatives.

Last updated

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/
Comments