我如何将laravel连接到一个巨大的谷歌驱动器文件夹?

I need to get a file list filtered by name, but my google drive folder is so big that it takes forever to search and list (it is still loading after 1/2 hours).

i connected laravel with: https://packagist.org/packages/private-it/flysystem-google-drive

I am running on laravel like:

$disk = \Storage::disk('googleDrive');
dd($disk->directories());

and keeps loading, I tried this:

$disk = \Storage::disk('googleDrive');
$adapter = $disk->getDriver()->getAdapter();
dd($adapter);

and shows the correct connection.