new functionality: Add project coding configuration feature for projects
This commit is contained in:
@@ -101,7 +101,6 @@
|
||||
<div class="p-6">
|
||||
<!-- Info Tab -->
|
||||
<div x-show="activeTab === 'info'">
|
||||
|
||||
<div class="flex flex-wrap gap-6">
|
||||
<!-- Columna Izquierda - Información -->
|
||||
<div class="w-full md:w-[calc(50%-12px)]">
|
||||
@@ -141,6 +140,12 @@
|
||||
Editar
|
||||
</a>
|
||||
|
||||
@can('update', $project)
|
||||
<a href="{{ route('project-settings.index', $project) }}" class="btn btn-primary">
|
||||
<x-icons icon="cog-6-tooth" class="w-4 h-4 mr-1" /> Configurar
|
||||
</a>
|
||||
@endcan
|
||||
|
||||
{{-- Formulario de Edición --}}
|
||||
<form method="POST" action="{{ route('projects.update', $project) }}">
|
||||
@csrf
|
||||
@@ -150,7 +155,7 @@
|
||||
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636"/>
|
||||
</svg>
|
||||
{{ $project->is_active ? 'Desactivar' : 'Activar' }}
|
||||
{{ $project->status == "Activo" ? 'Desactivar' : 'Activar' }}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user