du8864 2014-11-17 16:00
浏览 66
已采纳

Laravel雄辩地添加自定义查询元素

So I am having some trouble with size and server requests. So I am trying to get a minified version of a row from eloquent. So for example here is my query call

$user = User::where('email', '=', 'example@test.com')->first();

This works but returns a ton of information. Stuff that I do not need, relations, observables, dates, guarded status, fillable AND every single column. This is expected so If I want to get first and last name and email. I could do something like this

$users = DB::table('users')->select('firstname','lastname', 'email')->get();

And this would work, except I don't want to type that every single time I wanna do this. Is it possible for me to setup somewhere in eloquent or in my model so that I can do

$user = User::where('email', '=', 'example@test.com')->min()->first();

Simply add a custom function called min() that only grabs those three values. Is something like this possible?

  • 写回答

3条回答 默认 最新

  • douyu3145 2014-11-17 16:13
    关注

    Yes, you can do it if you declare a method in your User model like this:

    // User.php
    public function scopeMin($query)
    {
        return $query->select('firstname','lastname', 'email');
    }
    

    Then you can use it like this (To get only 'firstname','lastname', 'email'):

    $user = User::where('email', '=', 'example@test.com')->min()->first();
    

    Read about Query Scope on the documentation.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部