From b18c5c42bf14f4e8284f89aaad328a66c6314448 Mon Sep 17 00:00:00 2001 From: weeb Date: Fri, 30 May 2025 14:07:44 +0200 Subject: [PATCH] Improve table responsiveness --- .../views/livewire/application-list.blade.php | 103 +++++++++--------- 1 file changed, 53 insertions(+), 50 deletions(-) diff --git a/resources/views/livewire/application-list.blade.php b/resources/views/livewire/application-list.blade.php index b5921f3..858c72b 100644 --- a/resources/views/livewire/application-list.blade.php +++ b/resources/views/livewire/application-list.blade.php @@ -1,5 +1,5 @@
-
+

Application Management

@@ -16,58 +16,61 @@ @endif - - - - - - - - - - - - @forelse ($applications as $app) +
+
UUIDStatusUploadsSubmittedActions
+ - - - - - + + + + + - @empty - - - - @endforelse - -
{{ $app->uuid }} - @if ($app->status === 0) - Pending - @elseif ($app->status === 1) - Approved - @elseif ($app->status === 2) - Denied - @endif - {{ $app->uploads->count() }}{{ $app->created_at->diffForHumans() }} - - View - - - @if ($app->status === 0) - - Approve - - - Reject - - @endif - - StatusUploadsSubmittedActions
No applications found.
+ + + @forelse ($applications as $app) + + {{ $app->uuid }} + + + @if ($app->status === 0) + Pending + @elseif ($app->status === 1) + Approved + @elseif ($app->status === 2) + Denied + @endif + + {{ $app->uploads->count() }} + {{ $app->created_at->diffForHumans() }} + +
+ + View + + @if ($app->status === 0) + + Approve + + + Reject + + @endif +
+ + + @empty + + No applications found. + + @endforelse + + +
{{ $applications->links() }}