How to Create Custom Facade in Laravel 10

Websolutionstuff | Sep-22-2023 | Categories : Laravel PHP

Laravel, one of the most popular PHP frameworks, provides a powerful feature known as facades. Facades allow you to access Laravel services and classes in a clean and expressive manner. While Laravel provides a wide range of built-in facades for common tasks.

You may encounter scenarios where you want to create your custom facade to encapsulate your own functionality. In this tutorial, we'll explore how to create a custom facade in Laravel 10, enabling you to abstract complex operations into a simple and elegant interface.

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

All of Laravel's facades are defined in the Illuminate\Support\Facades namespace. So, we can easily access a facade like so:

use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Route;
 
Route::get('/cache', function () {
    return Cache::get('key');
});

 

Step 1: Create a New Laravel Project

If you haven't already, create a new Laravel project or use an existing one. You can do this by running the following command.

composer create-project --prefer-dist laravel/laravel project-name

 

Step 2: Create Class File

In the following step, first, you should create a "WSS" directory in the "app" folder and create a file named "WSSDateClass.php" (app/WSS/WSSDateClass.php).

Now, copy the following code into your "WSSDateClass.php" file.

<?php

namespace App\WSS;
use Carbon\Carbon;

class WSSDateClass {

    /**
     * Write code on Method
     *
     * @return response()
     */

    public function dateFormatYMD($date){

        return Carbon::createFromFormat('m/d/Y', $date)->format('Y-m-d');

    }

    /**
     * Write code on Method
     *
     * @return response()
     */

    public function dateFormatMDY($date){

        return Carbon::createFromFormat('Y-m-d', $date)->format('m/d/Y');

    }

}

 

 

Step 3: Create a Facade Class

Open the WSSDateClassFacade.php file and define your custom facade.

app/WSS/WSSDateClassFacade.php

<?php

namespace App\WSS;
use Illuminate\Support\Facades\Facade;

class WSSDateClassFacade extends Facade{

    protected static function getFacadeAccessor() { 
       return 'wssdateclass'; 
    }
}

 

Step 4: Create ServiceProvider Class

A custom facade typically requires a custom service provider. Run the following command to generate a service provider.

php artisan make:provider WSSServiceProvider

This will create a WSSServiceProvider.php file in the app/Providers directory.

<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use App\WSS\WSSDateClass;  

class WSSServiceProvider extends ServiceProvider
{

    /**
     * Register services.
     *
     * @return void
     */

    public function register()
    {     
        $this->app->bind('wssdateclass',function(){
            return new WSSDateClass();
        });
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */

    public function boot()
    {
        
    }
}

Then, we register the service provider in the app.php file.

config/app.php

<?php

return [
    ...
    'providers' => [
        ....

        App\Providers\WSSServiceProvider::class,
    ],


    'aliases' => [
        ...
        'WSSClass'=> App\WSS\WSSDateClassFacade::class
    ]
]

Now, we need to run the composer dump-autoload command as below.

composer dump-autoload

 

Step 5: Use Facade Class

let's use the facade class as below.

Route::get('get-date-class', function(){
    $getYMD = WSSDateClass::dateFormatYMD('09/22/2023');
    print_r($getYMD);

    $getMDY = WSSDateClass::dateFormatMDY('2023-09-22');
    print_r($getMDY);
});

Output:

2023-09-22

09/22/2023

 

Conclusion

Creating a custom facade in Laravel 10 is a powerful way to encapsulate complex functionality and provide a clean and expressive interface for your application. With this tutorial, you've learned how to create and use custom facades to improve the maintainability and readability of your Laravel code.

 


You might also like:

Recommended Post
Featured Post
How To Create Custom Command In Laravel 9
How To Create Custom Command I...

In this article, we will see how to create a custom command in laravel 9. Here we will learn about how to make cust...

Read More

Feb-14-2023

Laravel 9 Livewire CRUD Operation
Laravel 9 Livewire CRUD Operat...

In this article, we will see the laravel 9 livewire crud operation. we will learn about livewire crud operation in larav...

Read More

Nov-24-2022

How To Generate QR Code Using Javascript
How To Generate QR Code Using...

In this tutorial we will see how to generate QR code using javascript. we will implement QR code generator without...

Read More

Jul-19-2021

How to Check User Browser is Supported or Not in jQuery
How to Check User Browser is S...

In this article, we will see how to check user browser is supported or not in jquery. Some time latest features are not...

Read More

Nov-13-2020