
- Add CheckUpdates and UpdatePackage actions for managing server updates. - Create ServerPackageUpdated event for broadcasting update status. - Introduce Patches Livewire component for user interface to check and apply updates. - Update navigation and sidebar to include security patching options.
7 lines
293 B
PHP
7 lines
293 B
PHP
<div class="flex flex-col items-start gap-2 min-w-fit">
|
|
<a class="{{ request()->routeIs('server.security.patches') ? 'menu-item menu-item-active' : 'menu-item' }}"
|
|
href="{{ route('server.security.patches', $parameters) }}">
|
|
<button>Server Patching</button>
|
|
</a>
|
|
</div>
|