Laravel cache store does not support tagging

前端 未结 10 584
被撕碎了的回忆
被撕碎了的回忆 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:56

    Cache tags are not supported when using the file or database cache drivers. The Entrust package probably uses them somewhere.

    Open .env file set

     CACHE_DRIVER = array
     SESSION_DRIVER = file
    

    then make command in terminal

    php artisan config:cache 
    

提交回复
热议问题