SmartCane/laravel_app/resources/views/livewire/project/report-row.blade.php
Martin Folkerts eb1def36a1 wip
2023-12-22 16:55:40 +01:00

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>