array:4 [▼
"_id" => ObjectId {#1108 ▶}
"Date" => UTCDateTime {#1112 ▼
+"milliseconds": "1591399800000"
}
"token" => "1013875"
"value" => "78.65"
]
Hi, The sample object is as above, I need to get data(collection) where the Date is equal to 1591399800000(Time in milliseconds). Db is Mongo DB, Laravel framework.
DB::table('table_name')->where('Date','1591399800000')->first();
not giving me the required output.