|
@@ -242,26 +242,6 @@ class User extends Authenticatable implements MustVerifyEmail
|
|
|
return number_format($usage, 2, '.', '');
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- /**
|
|
|
- * @description Returns the Users "out of Credits" time
|
|
|
- *
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function outOfCredits()
|
|
|
- {
|
|
|
- $usage = $this->creditUsage();
|
|
|
- $credits = $this->credits;
|
|
|
- $timeLeft = number_format(($credits * 30) / $usage);
|
|
|
- $unit = "days";
|
|
|
-
|
|
|
- if ($timeLeft < 1) {
|
|
|
- $timeLeft = number_format(($credits * 30) / $usage * 24, 2);
|
|
|
- $unit = "hours";
|
|
|
- }
|
|
|
- return $timeLeft . " " . $unit;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* @return array|string|string[]
|
|
|
*/
|