du8864 2014-11-18 00: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-18 00: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条)

报告相同问题?

悬赏问题

  • ¥15 目详情-五一模拟赛详情页
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line