doushun4666 2018-09-27 14:47
浏览 53
已采纳

Laravel:在查询构建器咨询中获取softdeleted行

How do I get a row that was sofdeleted for example This is my code:

$mov = $emp->movimientos()->where('movimiento.linea_id', intval($request->id_caso))->with('producto_nombre', 'costo_promedio');

I have this consult, one movimientos is related with a costo_promedio, but if in some case acosto_promedio is softdeleted the result in my consult $mov will give me null in the part of costo_promedio. The thing is, where do I have to puth the withTrashed() method to get all data even the ones that were softdeleted

Thx for the help

  • 写回答

2条回答 默认 最新

  • dongliang2058 2018-09-27 15:28
    关注

    Use with() with a closure:

    $mov = $emp->movimientos()
        ->where('movimiento.linea_id', intval($request->id_caso))
        ->with([
            'producto_nombre',
            'costo_promedio' => function($query) {
                $query->withTrashed();  
            }
        ]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?