Bạn có thêm [
bắt đầu trong dòng này:-
->where([['DATE(shipping_table.sold_date)', '=',$date, ['shipping_table.shipping_status', '=' ,1]])
Nó cần phải là (sử dụng DB::raw()
để sử dụng mysql functions
):-
$date = date("Y-m-d", strtotime($request->datepicker2));
$products = DB::table('shipping_table')
->select('products.product_name', 'products.price', DB::raw("Sum(shipping_products.quantity) as qtysold"), 'shipping_table.sold_date')
->join('shipping_products','shipping_table.shipping_id', '=', 'shipping_products.shipping_id')
->join('products','products.product_id', '=', 'shipping_products.product_id')
->where([[DB::raw("date(shipping_table.sold_date)"),$date], ['shipping_table.shipping_status', '=' ,1]])
->groupBy('products.product_name')
->paginate(8);
Lưu ý:-
Về lỗi bạn gặp phải (Syntax error or access violation: 1055
) kiểm tra câu trả lời này và thực hiện tương ứng:-
aravel:Lỗi cú pháp hoặc vi phạm quyền truy cập:Lỗi 1055