Laravel - This cache store does not support tagging - Solved
By Hardik Savani
• November 5, 2023
Laravel
When i was working on ACL module for my project, i fetch error like : This cache store does not support tagging, if you use zizaco/entrust package for ACL and you fetch this error then you have to set array as cache driver, so open .evn file and change CACHE_DRIVER value this way:
.env
Read Also: Laravel Contact Form Send Email Tutorial
CACHE_DRIVER=array
Just change the cache driver and chek it.
It works for me.
I hope it can help you...