I try to set up kakao login to my Shopify store, but when I run the test I encountered this message error, what should I do? Thank you
I try to set up kakao login to my Shopify store, but when I run the test I encountered this message error, what should I do? Thank you
2
Answers
The
Cache
facade doesn’t live in theAppHttpControllers
namespace. If you do not include ause
statement at the top of your PHP files for your classes, it is assumed theclass
does live in the samenamespace
.The Laravel
Cache
facade lives in theIlluminateSupportFacades
namespace
so at the top of yourKakaoController
with your otheruse
statements, add the following:You must need to add "use IlluminateSupportFacadesCache;" on top of controller, middleware, command, event or blade files.
for example
or "use Cache;"