📌  相关文章
📜  未找到列:1054 'where 子句中的未知列'api_token' - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:50.587000             🧑  作者: Mango

代码示例2
1.So to answer this question, after racking my brain, I decided to clear the application, configuration, and route caches,that did the trick for me.

  php artisan cache:clear
  
2.You can run the above statement in your console when you wish to clear the application cache. What it does is that this statement clears all caches inside storage\framework\cache.

  php artisan route:cache
  
3.This clears your route cache. So if you have added a new route or have changed a route controller or action you can use this one to reload the same.

  php artisan config:cache