I am bit a new to Laravel. I am trying to get a orders between a certain point in time. I have a variable $streamStartTime
that is set early on to Carbon::now()->timestamp
.
$streamStartTime = Carbon::now()->timestamp;
Later on, I call this:
$streamPaidOrders = Order::->whereBetween('orders.created_at', [$streamStartTime, Carbon::now()]);
Would those 2 parameters give me orders between them or are they in different formats?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire