标签: laravel-eloquent
是否可以使用Eloquent Builder编写此查询?
$transactions = Transaction::where('client_id', $this->id) ->orWhere('supplier_id', $this->id) ->get();