If i want the orders between 2 dates. How can i do that in php SDK?
I’m assuming you’re using the latest PHP SDK. Note: dates will need to be ISO 8601 format.
$infusionsoft->orders()->where('since', $firstDate)->where('until', $secondDate)->get();
Great, it’s work perfect, thank you.