How can I check if $expiresAt has actually expired, against the $now timestamp?
$expiresAt = Carbon::parse($tokenInstance->expires_at);
$now = Carbon::now();
How can I check if $expiresAt has actually expired, against the $now timestamp?
$expiresAt = Carbon::parse($tokenInstance->expires_at);
$now = Carbon::now();