in Technology by
What is Facades in Laravel ?

1 Answer

0 votes
by

Laravel Facades provides a static like an interface to classes that are available in the application’s service container. Laravel self-ships with many facades which provide access to almost all features of Laravel ’s. Laravel facades serve as “static proxies” to underlying classes in the service container and provide benefits of a terse, expressive syntax while maintaining more testability and flexibility than traditional static methods of classes. All of Laravel’s facades are defined in the Illuminate\Support\Facades namespace. You can easily access a facade like so:


use Illuminate\Support\Facades\Cache;

Route::get('/cache', function () {
    return Cache::get('key');
});

Related questions

0 votes
    Where will we define Laravel’s Facades?...
asked Sep 28, 2021 in Technology by JackTerrance
0 votes
0 votes
    How to clear Cache in Laravel?...
asked Oct 1, 2021 in Technology by JackTerrance
0 votes
0 votes
    What is the Laravel Cursor?...
asked Oct 1, 2021 in Technology by JackTerrance
0 votes
    What are pros and cons of using Laravel Framework?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
0 votes
    What is Dependency Injection and its types in laravel?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    What is Inversion of Control in laravel, how to implement it....
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    List some Aggregates methods provided by query builder in Laravel ?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    What System requirements for installation of Laravel framework ?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    Why are migrations necessary in laravel?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    How many types of relationships available in Laravel Eloquent?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    How to use custom table in Laravel Modal ?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    What are Bundles in Laravel?...
asked Sep 30, 2021 in Technology by JackTerrance
...