Refactor previews.blade.php to improve code readability

This commit is contained in:
Andras Bacsai 2024-03-19 11:05:02 +01:00
parent 289480c954
commit 0aacad655d

View File

@ -15,8 +15,8 @@
@isset($rate_limit_remaining) @isset($rate_limit_remaining)
<div class="pt-1 ">Requests remaining till rate limited by Git: {{ $rate_limit_remaining }}</div> <div class="pt-1 ">Requests remaining till rate limited by Git: {{ $rate_limit_remaining }}</div>
@endisset @endisset
@if (count($pull_requests) > 0)
<div wire:loading.remove wire:target='load_prs'> <div wire:loading.remove wire:target='load_prs'>
@if ($pull_requests->count() > 0)
<div class="overflow-x-auto table-md"> <div class="overflow-x-auto table-md">
<table> <table>
<thead> <thead>
@ -50,9 +50,9 @@
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
@endif @endif
</div> </div>
</div>
@if ($application->previews->count() > 0) @if ($application->previews->count() > 0)
<div class="pb-4">Previews</div> <div class="pb-4">Previews</div>
<div class="flex flex-wrap gap-6"> <div class="flex flex-wrap gap-6">