lasthourcloud/resources/views/livewire/check-update.blade.php
Andras Bacsai befc51beec wip
2023-04-28 08:46:39 +02:00

18 lines
479 B
PHP

<div>
<button wire:click='checkUpdate'>Updates</button>
<div wire:loading wire:target="checkUpdate">
Checking for updates...
</div>
@env('production')
@if (auth()->user()->teams->contains(0))
<button wire:click='forceUpgrade'>Force Upgrade</button>
<div wire:loading wire:target="forceUpgrade">
Updating Coolify...
</div>
@endif
@endenv
@if ($updateAvailable)
Update available
@endif
</div>