feat: ✨ Update last_billed to current time on unsuspend server
This commit is contained in:
parent
da0dd37559
commit
2e6c03e3cc
1 changed files with 3 additions and 0 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;
|
||||
|
@ -126,9 +127,11 @@ class Server extends Model
|
|||
if ($response->successful()) {
|
||||
$this->update([
|
||||
'suspended' => null,
|
||||
'last_billed' => Carbon::now()->toDateTimeString(),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue