coolify/resources/views/source/all.blade.php

38 lines
1.8 KiB
PHP
Raw Normal View History

2023-06-12 22:02:10 +02:00
<x-layout>
<h1>Sources</h1>
2023-08-14 14:00:10 +02:00
<div class="subtitle ">All Sources</div>
2023-06-14 12:48:29 +02:00
<div class="grid gap-2 lg:grid-cols-2">
2023-06-12 22:02:10 +02:00
@forelse ($sources as $source)
@if ($source->getMorphClass() === 'App\Models\GithubApp')
<a class="flex gap-4 text-center hover:no-underline box group"
2023-08-11 20:19:42 +02:00
href="{{ route('source.github.show', ['github_app_uuid' => data_get($source, 'uuid')]) }}">
<x-git-icon class="text-white w-9 h-9" git="{{ $source->getMorphClass() }}" />
2023-08-30 14:46:51 +02:00
<div class="text-left group-hover:text-white">
2023-06-12 22:02:10 +02:00
<div>{{ $source->name }}</div>
2023-06-13 10:59:27 +02:00
@if (is_null($source->app_id))
2023-08-30 14:46:51 +02:00
<span class="text-error">Configuration is not finished</span>
2023-06-13 10:59:27 +02:00
@endif
2023-06-12 22:02:10 +02:00
</div>
</a>
@endif
@if ($source->getMorphClass() === 'App\Models\GitlabApp')
<a class="flex gap-4 text-center hover:no-underline box group"
2023-08-11 20:19:42 +02:00
href="{{ route('source.gitlab.show', ['gitlab_app_uuid' => data_get($source, 'uuid')]) }}">
<x-git-icon class="text-white w-9 h-9" git="{{ $source->getMorphClass() }}" />
2023-08-30 14:46:51 +02:00
<div class="text-left group-hover:text-white">
2023-06-12 22:02:10 +02:00
<div>{{ $source->name }}</div>
2023-06-13 10:59:27 +02:00
@if (is_null($source->app_id))
2023-08-30 14:46:51 +02:00
<span class="text-error">Configuration is not finished</span>
2023-06-13 10:59:27 +02:00
@endif
2023-06-12 22:02:10 +02:00
</div>
</a>
@endif
@empty
<div>
<div>No sources found.</div>
2023-09-05 11:53:34 +02:00
<x-use-magic-bar link="/source/new" />
2023-06-12 22:02:10 +02:00
</div>
@endforelse
</div>
</x-layout>