mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
37 lines
2.0 KiB
PHP
37 lines
2.0 KiB
PHP
<div>
|
|
<x-card-header>
|
|
<x-slot name="title">{{ __("Application") }}</x-slot>
|
|
<x-slot name="description">{{ __("Here you can manage your application") }}</x-slot>
|
|
<x-slot name="aside">
|
|
<div class="flex items-center">
|
|
<div class="mr-2">
|
|
<livewire:application.deploy :site="$site" />
|
|
</div>
|
|
<div class="mr-2">
|
|
<livewire:application.auto-deployment :site="$site" />
|
|
</div>
|
|
<x-dropdown>
|
|
<x-slot name="trigger">
|
|
<x-secondary-button>
|
|
{{ __('Manage') }}
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5 ml-1">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 15L12 18.75 15.75 15m-7.5-6L12 5.25 15.75 9" />
|
|
</svg>
|
|
</x-secondary-button>
|
|
</x-slot>
|
|
<x-slot name="content">
|
|
<x-dropdown-link class="cursor-pointer" x-on:click="$dispatch('open-modal', 'change-branch')">{{ __("Branch") }}</x-dropdown-link>
|
|
<x-dropdown-link class="cursor-pointer" x-on:click="$dispatch('open-modal', 'deployment-script')">{{ __("Deployment Script") }}</x-dropdown-link>
|
|
<x-dropdown-link class="cursor-pointer" x-on:click="$dispatch('open-modal', 'update-env')">{{ __(".env") }}</x-dropdown-link>
|
|
</x-slot>
|
|
</x-dropdown>
|
|
<livewire:application.change-branch :site="$site" />
|
|
<livewire:application.deployment-script :site="$site" />
|
|
<livewire:application.env :site="$site" />
|
|
</div>
|
|
</x-slot>
|
|
</x-card-header>
|
|
|
|
<livewire:application.deployments-list :site="$site" />
|
|
</div>
|