Where are laravel cache files stored?
Cache will be stored in the storage/framework/cache
If this is not working then make sure you have sufficient folder permission to access it.
If you want to access it. Simply access it by key
like:
Cache::get('key');
Should be at:
storage/framework/cache
Checked it ?