lasthourcloud/resources/views/projects.blade.php

26 lines
792 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-05-24 13:47:04 +00:00
<div class="pb-10 text-sm breadcrumbs">
<ul>
<li>
All Projects
</li>
</ul>
</div>
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-06-07 08:33:45 +00: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 13:47:04 +00:00
@endforelse
</div>
2023-05-22 13:47:40 +00:00
</x-layout>