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() }}