feat: ✨ Update last_billed to current time on unsuspend server
This commit is contained in:
parent
a26f6dd137
commit
cad41ffb0a
1 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
namespace App\Models;
|
||||
|
||||
use App\Classes\Pterodactyl;
|
||||
use Carbon\Carbon;
|
||||
use Exception;
|
||||
use GuzzleHttp\Promise\PromiseInterface;
|
||||
use Hidehalo\Nanoid\Client;
|
||||
|
@ -124,10 +125,12 @@ class Server extends Model
|
|||
|
||||
if ($response->successful()) {
|
||||
$this->update([
|
||||
'suspended' => null
|
||||
'suspended' => null,
|
||||
'last_billed' => Carbon::now()->toDateTimeString(),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue