45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
@extends('relatorios.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>Cliente</th>
|
|
<th>Valor</th>
|
|
<th>Num. doc</th>
|
|
<th>Chave</th>
|
|
<th>Estado</th>
|
|
<th>Data</th>
|
|
<th>Finalidade</th>
|
|
<th>Tipo</th>
|
|
@if(__countLocalAtivo() > 1)
|
|
<th>Local</th>
|
|
@endif
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($data as $key => $item)
|
|
<tr class="@if($key%2 == 0) pure-table-odd @endif">
|
|
@if($item->cliente)
|
|
<td>{{ $item->cliente->info }}</td>
|
|
@else
|
|
<td>{{ $item->fornecedor->info }}</td>
|
|
@endif
|
|
|
|
<td>{{ __moeda($item->total) }}</td>
|
|
<td>{{ $item->numero }}</td>
|
|
<td>{{ $item->chave }}</td>
|
|
<td>{{ strtoupper($item->estado) }}</td>
|
|
<td>{{ __data_pt($item->data_emissao) }}</td>
|
|
<td>{{ $item->getFinNFe() }}</td>
|
|
<td>{{ $item->tpNF == 1 ? 'Saída' : 'Entrada' }}</td>
|
|
@if(__countLocalAtivo() > 1)
|
|
<td class="text-danger">{{ $item->localizacao->descricao }}</td>
|
|
@endif
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<h4>Total: R$ {{ __moeda($data->sum('total')) }}</h4>
|
|
@endsection
|