💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## laravel 隐藏不需要查询的数据表字段 ### 1、控制器中隐藏不需要显示的字段 ``` $result = Job::where('user_id','=',Auth::id())->paginate(5); $result = $result->makeHidden(['字段数组']); ``` ``` // 临时暴露隐藏属性makeVisible('password') $merchant=Merchant::first()->makeVisible('password')->toArray(); ``` ``` // 临时隐藏属性makeHidden('password') $merchant=Merchant::first()->makeHidden('password')->toArray(); ``` ### 2、在自己的model下 ``` //隐藏字段信息 //比如我的密码不能够在查询的时候显示出来 protected $hidden = ['password']; //允许显示的 protected $visible = ['first_name', 'last_name']; //这里只能设置一个,不能同时,否则只会执行 $visible ```