arcadiasuite/plus/resources/views/relatorios_adm/certificados.blade.php

33 lines
755 B
PHP

@extends('relatorios_adm.default')
@section('content')
<table class="table-sm table-borderless" style="border-bottom: 1px solid rgb(206, 206, 206); margin-bottom:10px; width: 100%;">
<thead>
<tr>
<th>Razão social</th>
<th>CPF/CNPJ</th>
<th>IE</th>
<th>Vencimento</th>
<th>Stauts</th>
</tr>
</thead>
<tbody>
@foreach($data as $key => $item)
<tr class="@if($key%2 == 0) pure-table-odd @endif">
<td>{{ $item->nome }}</td>
<td>{{ $item->nome_fantasia }}</td>
<td>{{ $item->cpf_cnpj }}</td>
<td>{{ $item->ie }}</td>
<td>{{ __data_pt($item->vencimento, 0) }}</td>
</tr>
@endforeach
</tbody>
</table>
<h4>Total de registros: <strong style="color: #3B4CA7">{{ sizeof($data) }}</strong></h4>
@endsection