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>
|