• Reading time ~ 7 min
  • 27.03.2023

Have you ever used Auth::user() in Laravel? So yeah, that Auth is a Facade. Question: do you actually need to know how they work, and would you need to create your own facades?

Disclaimer: this article is written by Modestas, more like an opinion. Facades are one of those topics that have different opinions around them, so I'm open to discussions here or on Twitter.


What are Facades?

First, the definition.

Reading Laravel documentation about Facades you might get a little confused about what they are. The documentation says:

Facades provide a "static" interface to classes that are available in the application's service container.

Along with that, they also say:

Laravel Facades serve as "static proxies" to underlying classes in the service container, providing the benefit of a terse, expressive syntax while maintaining more testability and flexibility than traditional static methods.

Wait, what does that actually mean?

Well, you won't have to know what class is underneath the Facade. You can just call the Auth facade and access methods from the underlying class.

Facades in Action

In Laravel, we can call Auth::user() to retrieve the user from the session.

What we don't see under the hood, it is a static proxy to the Illuminate\Auth\AuthManager class. The AuthManager class has a method called user() that returns the user from the session.

Facade makes our experience as developers easier as we have to only remember the Auth Facade, and we get instant static access to the user() method.

Let's quickly compare facade usage with the usage of the class itself to illustrate the difference.

How would it look without Facades?

Creating New Class Instance

use Illuminate\Auth\AuthManager;

public function index()
{
    $auth = new AuthManager();
    $user = $auth->user();
}

Or, a bit shorter, with Dependency Injection.

Using Dependency Injection

use Illuminate\Auth\AuthManager;

public function index(AuthManager $auth)
{
    $user = $auth->user();
}

With Facade under the hood, it's just one line.

Using Facade

public function index()
{
    $user = Auth::user();
}

So, in short, Facades are just like a shortcut to a specific class.

Now, when we know what they are, let's think if we need to use them, and how.


USING Facades is Great

Let's start with what I see as good at using Facades.

Use Facades from Framework Core

It's convenient to use the Facades from Laravel core. It just works, and you don't have to remember any of the long class names.

Great for those that are learning to get things running. Great for those that are developing systems rapidly.

Imagine if you'd had to remember all of these:

It's much better to quickly remember their Facades and use them:


Use Facades from Packages

Package creators can also benefit from Facades due to the same reason as we have in the framework itself - it's easier to remember the name of the Facade than the name of the class. Let's look at a few package examples:

Spatie Activity Logs

https://spatie.be/docs/laravel-activitylog/v4/advanced-usage/batch-logs

In this package, we can find a Facade called LogBatch which is a shortcut for the Spatie\Activitylog\LogBatch class.

Laravel Debugbar

https://github.com/barryvdh/laravel-debugbar

This package also contains a Facade that's called Debugbar which is a shortcut for the Barryvdh\Debugbar\LaravelDebugbar class.

It just gives the end user a better interaction to use some functionality at any point statically.


CREATING Your Own Facades: Not So Great

Oh cool, so you would think you can create your own "shortcut" Facades and use them anywhere in your Laravel application?

And here's the part where I think Facades are not that good. Used in the wrong way, they may cause problems with tooling or overall experience.

Issues With Auto-Completion

When you use Facades, you don't have access to the methods that are available in the class. This can cause some issues with auto-completion in your IDE.

For example, imagine that you have a Service class called SearchService that has a method called get():

app/Services/SearchService.php

namespace App\Services\SearchService;

class SearchService
{
    public function get(string $query): array
    {
        // ...
    }
}

To create a "shortcut" to it, you create a Facade called Search:

app/Facades/Search.php

namespace App\Services\Facades;

use Illuminate\Support\Facades\Facade;

class Search extends Facade
{
    protected static function getFacadeAccessor()
    {
        return \App\Services\SearchService::class;
    }
}

So now you can use Search::get(), right?

Cool, but your IDE might not show that the class exists or that it doesn't have any methods!

And that's true, because your Facade class doesn't have the get() method in it.

You can make the IDE autocomplete work, by adding doc blocks to the Facade class:

app/Facades/Search.php

namespace App\Services\Facades;

/**
 * @method static get(string $query)
 */
class Search extends Facade {
    // ...
}

But you'll also have to manage another file to make sure that all methods are added to the Facade. Seems complicated.


Facades Can Override The Names of Classes

When you create a Facade, you don't have to follow the same Class name that you intend to call. This means that I can use whatever name I want for the Facade, and it will still work. Let's look at an example:

Creating a Facade

class MyRandomClassName extends Facade
{
    protected static function getFacadeAccessor()
    {
        return \App\Services\SearchService::class;
    }
}

config/app.php

// ...
'aliases' => Facade::defaultAliases()->merge([
    // ...
    'MyRandomClassName' => \App\Services\Facades\MyRandomClassName::class,
])->toArray(),

Facade Usage

\MyRandomClassName::get('query');

And now I can use the MyRandomClassName facade to call the Search class. No imports are needed as you can access it globally.

Even worse is the fact that this class might not even exist! How? Well, we are creating an alias. Let's change the config a bit:

config/app.php

// ...
'aliases' => Facade::defaultAliases()->merge([
    // ...
    'MadeUpAlias' => \App\Services\Facades\MyRandomClassName::class,
])->toArray(),

Facade Usage

\MadeUpAlias::get('query');

And this will still work! But if you will try to search globally for MadeUpAlias, there won't be any results. This is because it's not a real class. It's just an alias for a class that exists.

Notice: I know this example is exaggerated. But it gives you a great example of how you can use Facades in the wrong way to add more confusion to your codebase.


Facades Can be Used Anywhere

One thing that Facades have for them is being able to use them anywhere you want. Great thing, right?

Do you need it in a View, Controller, Service, or anywhere else? No problem - it's there.

But it's a quick way to break the MVC pattern, and run complex logic where you are not supposed to.

Imagine you have created a Facade for a Service that is generating a big report table. Use it in a Controller and it will be good. But use it in View, and we have a problem.


Facade Tutorials Don't Show Real-World Usage

When you look at tutorials on how to create Facades, they are usually very simple. They are just a shortcut to a class that returns something simple.

But in real-world scenarios, Facades are meant to be used as a Proxy Class to gain static access to methods that are not static like in the Auth Facade.

When it stops being cool is where you can quickly get out of hand and move everything into facades which would quickly lead you to scope creep and one class might start doing the work of 10 others.


Conclusion

I'd say that Facades are convenient and easy to use, from framework and packages. But if we try creating your Facades - that story changes. You have to really know what you are doing, then.

It would be better to think about how you can structure the project with different design pattern(s), to avoid having a global class (Facade) that's callable anywhere.

What do you think? Let's discuss in the comments!

Comments

No comments yet
Yurij Finiv

Yurij Finiv

Full stack

ABOUT

Professional Fullstack Developer with extensive experience in website and desktop application development. Proficient in a wide range of tools and technologies, including Bootstrap, Tailwind, HTML5, CSS3, PUG, JavaScript, Alpine.js, jQuery, PHP, MODX, and Node.js. Skilled in website development using Symfony, MODX, and Laravel. Experience: Contributed to the development and translation of MODX3 i...

About author CrazyBoy49z
WORK EXPERIENCE
Contact
Ukraine, Lutsk
+380979856297