I am getting this error since I installed Zizaco\\Entrust on my Authentication Routes.
BadMethodCallException: This cache store does not sup
Use this command in your command prompt
php artisan config:cache
Cache tags are not supported when using the file or database cache drivers. The Entrust package probably uses them somewhere. You should be ok if you change it to array, memcache or apc for example.
https://laravel.com/docs/5.2/cache#cache-tags
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
If you continue having the issue, you should change your entrust version to
dev-laravel-5