Laravel cache store does not support tagging

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

    In Your .env file change

    CACHE_DRIVER=file
    

    To

    CACHE_DRIVER=array
    

    Then run these commands

    php artisan config:clear
    php artisan config:cache
    

    It will work

提交回复
热议问题