Implement instance-wide SPA navigation toggle that enables smooth page transitions with prefetching on hover. Excludes terminal links which require full page lifecycle for WebSocket connections. Adds defensive checks to global-search component for SPA navigation compatibility. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
25 lines
869 B
PHP
25 lines
869 B
PHP
<div>
|
|
<x-slot:title>
|
|
Project Variables | Coolify
|
|
</x-slot>
|
|
<div class="flex gap-2">
|
|
<h1>Projects</h1>
|
|
</div>
|
|
<div class="subtitle">List of your projects.</div>
|
|
<div class="flex flex-col gap-2">
|
|
@forelse ($projects as $project)
|
|
<a class="coolbox group"
|
|
href="{{ route('shared-variables.project.show', ['project_uuid' => data_get($project, 'uuid')]) }}" {{ wireNavigate() }}>
|
|
<div class="flex flex-col justify-center mx-6 ">
|
|
<div class="box-title">{{ $project->name }}</div>
|
|
<div class="box-description ">
|
|
{{ $project->description }}</div>
|
|
</div>
|
|
</a>
|
|
@empty
|
|
<div>
|
|
<div>No project found.</div>
|
|
</div>
|
|
@endforelse
|
|
</div>
|
|
</div>
|