mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 20:49:32 +00:00
16 lines
444 B
PHP
16 lines
444 B
PHP
<div>
|
|
<button wire:click='checkUpdate'>Updates</button>
|
|
<div wire:loading wire:target="checkUpdate">
|
|
Checking for updates...
|
|
</div>
|
|
@if (auth()->user()->teams->contains(0))
|
|
<button wire:click='forceUpgrade'>Force Upgrade</button>
|
|
<div wire:loading wire:target="forceUpgrade">
|
|
Updating Coolify...
|
|
</div>
|
|
@endif
|
|
@if ($updateAvailable)
|
|
Update available
|
|
@endif
|
|
</div>
|