arcadiasuite/plus/resources/views/modals/_vendas_suspensas.blade.php

29 lines
1.2 KiB
PHP

<div class="modal fade" id="vendas_suspensas" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header bg-primary">
<h5 class="modal-title text-white" id="staticBackdropLabel">Vendas Suspensas</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="table-responsive">
<table class="table table-vendas-suspensas">
<thead>
<tr>
<th>Cliente</th>
<th>Total</th>
<th>Data</th>
<th>Usuário</th>
<th>Ações</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>