在控制器中用到了Validator::make(),它默认是use Dotenv\Validator; 但这样会出现 FatalErrorException错误 call to undefined method Dotenv\Validator::make() 解决方法 把use Dotenv\Validator; 改为 use Illuminate\Support
在控制器中用到了Validator::make(),它默认是use Dotenv\Validator;
但这样会出现
FatalErrorException错误
call to undefined method Dotenv\Validator::make()
解决方法
把use Dotenv\Validator;
改为
use Illuminate\Support\Facades\Validator;
问题就解决了。在此记录下来。
以上这篇laravel 解决Validator使用中出现的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持易盾网络。