coolify/resources/views/livewire/project/index.blade.php

46 lines
2.4 KiB
PHP
Raw Normal View History

2024-01-07 16:23:41 +01:00
<div>
<div class="flex gap-2">
2024-03-19 15:37:16 +01:00
<h1>Projects</h1>
<x-modal-input buttonTitle="+ Add" title="New Project">
<livewire:project.add-empty />
</x-modal-input>
</div>
2024-03-20 15:46:59 +01:00
<div class="subtitle">All your projects are here.</div>
2023-06-14 12:48:29 +02:00
<div class="grid gap-2 lg:grid-cols-2">
2024-03-22 11:34:15 +01:00
@forelse ($projects as $project)
<div class="gap-2 border border-transparent cursor-pointer box group" x-data
x-on:click="goto('{{ $project->uuid }}')">
<a class="flex flex-col flex-1 mx-6 hover:no-underline"
href="{{ route('project.show', ['project_uuid' => data_get($project, 'uuid')]) }}">
<div class="font-bold text-white">{{ $project->name }}</div>
<div class="description ">
{{ $project->description }}</div>
</a>
<div class="flex items-center">
<a class="mx-4 on-box"
2024-03-22 11:34:15 +01:00
href="{{ route('project.edit', ['project_uuid' => data_get($project, 'uuid')]) }}">
<svg xmlns="http://www.w3.org/2000/svg" class="icon on-box" viewBox="0 0 24 24"
2024-03-22 11:34:15 +01:00
stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round"
stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z" />
<path d="M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" />
</svg>
2023-10-10 10:56:11 +02:00
</a>
</div>
2024-03-22 11:34:15 +01:00
</div>
@empty
<div>
<div>No project found.</div>
</div>
@endforelse
2023-05-24 15:47:04 +02:00
</div>
2024-03-22 11:34:15 +01:00
<script>
function goto(uuid) {
window.location.href = '/project/' + uuid;
}
</script>
2024-01-07 16:23:41 +01:00
</div>