lk.zachem.info/resources/views/livewire/agents-table.blade.php
2025-04-03 17:21:05 +08:00

45 lines
2.3 KiB
PHP

<div>
<div class="fs-5 bg-light p-0 m-0 border border-1 rounded-4 overflow-hidden">
<table class="table m-0">
<tbody class="">
@foreach ($agents as $agent)
<tr>
<td>
<img src="../../images/icons/user.png" class="img-fluid align-middle" style="height: 50px;">
</td>
<td class="fw-semibold fs-5 align-middle">
{{ $agent->user->name }}
</td>
<td class="align-middle">
{{ $agent->user->phone }}
</td>
<td class="align-middle">
{{ $agent->user->email }}
</td>
@if (!$agent->trashed())
<td class="align-middle text-center bg-white">
<a class="btn" href="{{ route('company.agents.delete', ['agent' => $agent->id]) }}">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
fill="currentColor" class="bi bi-person-dash" viewBox="0 0 16 16">
<path
d="M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M11 12h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1m0-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4" />
<path
d="M8.256 14a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z" />
</svg>
</a>
</td>
@else
<td class="align-middle">
{{ $agent->deleted_at->diffForHumans() }}
</td>
@endif
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="mt-3">
{{ $agents->links('layouts.pagination') }}
</div>
</div>