I have an application and my cache driver is
In config/cache.php
'default' => env('CACHE_DRIVER', 'file'),
In my .env
CACHE_DRIVER=file
In my application if I cache something, then where these cache files are 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');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With