Laravel – How in facade wrapper to make 1 one app bind calling?
On laravel site I defined a facade based on LoggedUserService with Interface class, whicj looks like : <?php namespace AppLibraryFacades; use AppLibraryServicesInterfacesLoggedUserInterface; use IlluminateFoundationAuthUser as Authenticatable; class LoggedUserFacade { public static function getAvatarHtml(?string $customClass = '', bool $showPermissions = false):…