42 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <x-layout>
 | |
|     <h1>Configuration</h1>
 | |
|     <x-applications.navbar :applicationId="$application->id" :gitBranchLocation="$application->gitBranchLocation" />
 | |
|     <div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }">
 | |
|         <div class="flex gap-4">
 | |
|             <a :class="activeTab === 'general' && 'text-purple-500'"
 | |
|                 @click.prevent="activeTab = 'general'; window.location.hash = 'general'" href="#">General</a>
 | |
|             <a :class="activeTab === 'environment-variables' && 'text-purple-500'"
 | |
|                 @click.prevent="activeTab = 'environment-variables'; window.location.hash = 'environment-variables'"
 | |
|                 href="#">Environment
 | |
|                 Variables</a>
 | |
|             <a :class="activeTab === 'source' && 'text-purple-500'"
 | |
|                 @click.prevent="activeTab = 'source'; window.location.hash = 'source'" href="#">Source</a>
 | |
|             <a :class="activeTab === 'destination' && 'text-purple-500'"
 | |
|                 @click.prevent="activeTab = 'destination'; window.location.hash = 'destination'"
 | |
|                 href="#">Destination
 | |
|             </a>
 | |
|             <a :class="activeTab === 'storages' && 'text-purple-500'"
 | |
|                 @click.prevent="activeTab = 'storages'; window.location.hash = 'storages'" href="#">Storage
 | |
|             </a>
 | |
|         </div>
 | |
|         <div x-cloak x-show="activeTab === 'general'">
 | |
|             <h3>General Configurations</h3>
 | |
|             <livewire:project.application.general :applicationId="$application->id" />
 | |
|         </div>
 | |
|         <div x-cloak x-show="activeTab === 'environment-variables'">
 | |
|             <livewire:project.application.environment-variable.all :application="$application" />
 | |
|         </div>
 | |
|         <div x-cloak x-show="activeTab === 'source'">
 | |
|             <h3>Source</h3>
 | |
|             <livewire:project.application.source :applicationId="$application->id" />
 | |
|         </div>
 | |
|         <div x-cloak x-show="activeTab === 'destination'">
 | |
|             <h3>Destination</h3>
 | |
|             <livewire:project.application.destination :destination="$application->destination" />
 | |
|         </div>
 | |
|         <div x-cloak x-show="activeTab === 'storages'">
 | |
|             <livewire:project.application.storages.all :application="$application" />
 | |
|         </div>
 | |
|     </div>
 | |
| </x-layout>
 | 
