PHPackages                             hmones/laravel-facade - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. hmones/laravel-facade

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

hmones/laravel-facade
=====================

Generates facades in your laravel project with one simple command.

v1.2.0(4y ago)101.1k1MITPHPCI failing

Since Aug 27Pushed 4y ago1 watchersCompare

[ Source](https://github.com/hmones/laravel-facade)[ Packagist](https://packagist.org/packages/hmones/laravel-facade)[ Docs](https://github.com/hmones/laravel-facade)[ RSS](/packages/hmones-laravel-facade/feed)WikiDiscussions master Synced today

READMEChangelog (3)Dependencies (4)Versions (5)Used By (0)

Laravel Facade
==============

[](#laravel-facade)

[![Build Status](https://github.com/hmones/laravel-facade/actions/workflows/build.yml/badge.svg)](https://github.com/hmones/laravel-facade/actions)[![Style CI](https://camo.githubusercontent.com/050e5b514fae486617edf3aa0ec3b989199989cd6688caa745d5697097905f95/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3339303331313430322f736869656c64)](https://github.styleci.io/repos/390311402)[![Total Downloads](https://camo.githubusercontent.com/e5ae4a7328de367ed7bf3396e4eb776cbd7f9a14b679eda4deb141797e7aa86a/687474703a2f2f706f7365722e707567782e6f72672f686d6f6e65732f6c61726176656c2d6661636164652f646f776e6c6f616473)](https://packagist.org/packages/hmones/laravel-facade)[![Latest Stable Version](https://camo.githubusercontent.com/456a03ef421a0ae7ea068fcc737853e11b916b06f97398f4d54afc29f9c864b2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f686d6f6e65732f6c61726176656c2d666163616465)](https://packagist.org/packages/hmones/laravel-facade)[![License](https://camo.githubusercontent.com/1190e20b38b5e5a1724a110f0df707145072255fce6f91610e72018321cd4ac0/687474703a2f2f706f7365722e707567782e6f72672f686d6f6e65732f6c61726176656c2d6661636164652f6c6963656e7365)](https://packagist.org/packages/hmones/laravel-facade)

This package makes the process of creating facades in laravel super easy and with one simple artisan command. For each facade created with this package:

- A Facade file is created in `App\Facades` to define the facade accessor.
- A Facade service provider `App\Providers\FacadeServiceProvider.php` is created/edited to bind your implementation class to the facade accessor.
- The `FacadeServiceProvider` is registered in your app configuration file (`config\app.php`).

Installation
------------

[](#installation)

Via Composer

```
composer require hmones/laravel-facade --dev
```

Configuration
-------------

[](#configuration)

To publish the package configuration

```
php artisan vendor:publish --tag=laravel-facade-config
```

The configuration contains the following values:

```
