Convert Facade call to dependency injection

Converts Laravel Facade static method calls to dependency injection pattern by:

Example:

Before:

Cache::get('key')

After:

private CacheManager $cache;

public function __construct(CacheManager $cache) {
    $this->cache = $cache;
}
//...
$this->cache->get('key')