lasthourcloud/resources/views/projects.blade.php

23 lines
642 B
PHP
Raw Normal View History

2023-05-22 13:47:40 +00:00
<x-layout>
2023-06-02 10:34:45 +00:00
<h1>Projects</h1>
2023-06-07 19:44:16 +00:00
<nav class="flex pt-2 pb-10 text-sm">
<ol class="inline-flex items-center">
<li class="inline-flex items-center">
2023-05-24 13:47:04 +00:00
All Projects
</li>
2023-06-07 19:44:16 +00:00
</ol>
</nav>
2023-06-07 13:08:35 +00:00
<div class="grid grid-cols-2 gap-2">
2023-05-24 13:47:04 +00:00
@forelse ($projects as $project)
<a href="{{ route('project.show', ['project_uuid' => data_get($project, 'uuid')]) }}"
class="box">{{ $project->name }}</a>
@empty
2023-06-07 08:33:45 +00:00
<div>
2023-06-07 13:08:35 +00:00
No project found.
<x-use-magic-bar />
2023-05-26 13:52:23 +00:00
</div>
2023-05-24 13:47:04 +00:00
@endforelse
</div>
2023-05-22 13:47:40 +00:00
</x-layout>