public function customers()

in app/Http/Controllers/Api/ProductsController.php [24:33]


    public function customers($id): Collection
    {
        $customers = OrderLines::select()
            ->leftJoin('orders', 'order_lines.order_id', '=', 'orders.id')
            ->leftJoin('customers', 'orders.customer_id', '=', 'customers.id')
            ->where('order_lines.product_id', $id)
            ->get();

        return $customers;
    }