2023-05-22 15:47:40 +02:00
|
|
|
<x-layout>
|
2023-06-02 12:34:45 +02:00
|
|
|
<h1>Projects</h1>
|
2023-05-24 15:47:04 +02:00
|
|
|
<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
|
2023-06-07 10:33:45 +02:00
|
|
|
<div>
|
|
|
|
No project found. Use the magic
|
|
|
|
bar (press <span class="kbd-custom">/</span>) to create a new
|
2023-05-26 15:52:23 +02:00
|
|
|
project.
|
|
|
|
</div>
|
2023-06-07 10:33:45 +02:00
|
|
|
<div>
|
|
|
|
If you do not have a project yet, just create a resource (application, database, etc.) first, it will
|
|
|
|
create a new project for you automatically.
|
|
|
|
</div>
|
2023-05-24 15:47:04 +02:00
|
|
|
@endforelse
|
|
|
|
</div>
|
2023-05-22 15:47:40 +02:00
|
|
|
</x-layout>
|