This commit is contained in:
Andras Bacsai
2023-05-24 15:47:04 +02:00
parent 167379b0e0
commit 64101b3b06
6 changed files with 33 additions and 11 deletions

View File

@@ -1,9 +1,18 @@
<x-layout>
<h1>Projects</h1>
@forelse ($projects as $project)
<a href="{{ route('project.show', ['project_uuid' => data_get($project, 'uuid')]) }}"
class="box">{{ $project->name }}</a>
@empty
No project found.
@endforelse
<h1 class="py-0">Projects</h1>
<div class="pb-10 text-sm breadcrumbs">
<ul>
<li>
All Projects
</li>
</ul>
</div>
<div class="flex flex-col gap-2">
@forelse ($projects as $project)
<a href="{{ route('project.show', ['project_uuid' => data_get($project, 'uuid')]) }}"
class="box">{{ $project->name }}</a>
@empty
No project found.
@endforelse
</div>
</x-layout>