Yajra/Jquery datatable如何根据条件排除记录

Yajra/Jquery datatable how to exclude records based on condition

如何根据我在 addColumn 函数上的条件排除数据?

我试过的是这个,但它会包含 > 0

的记录
    ->addColumn('total', function ($row) {
        $arr = array(abs($row->fba_fee_count),abs($row->referral_fee_count));
        if($arr > 0) {
            return array_sum($arr);
        }

在前端方面,我也尝试过

    "createdRow": function( row, data, dataIndex ) {
        if ( data.total === 0 ) {
            $(row).hide();
        }
    },

现在它隐藏了数据,但分页显示了所有数据。如下图所示。我有 3 条记录,但分页是针对所有记录。

有人可以帮忙吗?提前致谢。

我认为如果总和大于零,你可以在查询中限制更好。

$result= ModelName::havingRaw('(referral_fee_count+fba_fee_count)>0')->get();

$result=ModelName::having(DB::raw('referral_fee_count+fba_fee_count'),'>',0)->get();

同样对于 yajra 数据表不需要使用 get() .