22 lines
836 B
PHP
22 lines
836 B
PHP
<tr>
|
|
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6 lg:pl-8">{{ $report->name }}</td>
|
|
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
@if($report->status == 'pending')
|
|
<x-badge status="pending" wire:poll.1s=""></x-badge>
|
|
@else
|
|
<x-badge :status="$report->status"></x-badge>
|
|
@endif
|
|
</td>
|
|
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
lindsay.walton@example.com
|
|
</td>
|
|
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">Member</td>
|
|
<td class="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-6 lg:pr-8">
|
|
@if($report->status === 'success')
|
|
<x-button wire:click="download">Download</x-button>
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
|
|
|