This is the link to source code of Laravel (v8 but it's not important) about Redis Facade
https://github.com/laravel/framework/blob/8.x/src/Illuminate/Support/Facades/Facade.php#L164
I would like to find the 'concrete' Redis class served by the facade itself.
How can I do? Where does Laravel framework bind this facade to a "real" class?
Concrete implementation of a Facade in Laravel is served from the service container.
For
Redisyou can find invendor/laravel/framework/src/Illuminate/Redis/RedisServiceProvider.phpIn Laravel 9.3 you can see something like this