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 Upgrade from Angular 16 to Angular 17
How to Upgrade from Angular 16...

Hey everyone! If you're a developer working with Angular, you know how exciting it is when a new version is released...

Read More

Mar-18-2024

How to Deploy Laravel on Heroku with Database
How to Deploy Laravel on Herok...

In this article, we will see how to deploy laravel on heroku with database. Heroku is a cloud platform as...

Read More

Feb-12-2021

How To Disable Past Date In jQuery Datepicker
How To Disable Past Date In jQ...

In this tutorial, we will see how to disable past dates in jquery datepicker. In the date picker, today's date...

Read More

Jun-18-2022

How To Create Stacked Bar Chart In Laravel 9 Using Highcharts
How To Create Stacked Bar Char...

In this article, we will see how to create a dynamic stacked bar chart in laravel 9 using highchart. Here, we will...

Read More

Dec-30-2022