Merge pull request #601 from jitendra-webkul/jitendra

Issue #585 fixed
This commit is contained in:
JItendra Singh 2019-02-20 12:10:45 +05:30 committed by GitHub
commit 9bb1dd57f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ class OrderDataGrid extends DataGrid
$this->addFilter('billed_to', DB::raw('CONCAT(order_address_billing.first_name, " ", order_address_billing.last_name)'));
$this->addFilter('shipped_to', DB::raw('CONCAT(order_address_shipping.first_name, " ", order_address_shipping.last_name)'));
$this->addFilter('id', 'orders.id');
$this->setQueryBuilder($queryBuilder);
}