Laravel cache store does not support tagging

前端 未结 10 587
被撕碎了的回忆
被撕碎了的回忆 2020-12-15 04:24

I am getting this error since I installed Zizaco\\Entrust on my Authentication Routes.

BadMethodCallException: This cache store does not sup         


        
10条回答
  •  失恋的感觉
    2020-12-15 04:35

    Laravel file and database drivers don't support tags.

    What you need to update, to fix this issue is simply changing the cache driver from file to array in your .env (located in root folder) file as below.

    CACHE_DRIVER=array
    

    Hope it helps!!

提交回复
热议问题