Files
oficial/app/resources/views/ventas/show/detalle.blade.php

39 lines
1.1 KiB
PHP
Raw Normal View History

<div class="ui inverted grey two column grid segment">
<div class="column">
VENTA
</div>
<div class="right aligned column">
<a style="color: inherit;" href="{{$urls->base}}/venta/{{$venta->id}}/edit">
<i class="edit icon"></i>
</a>
</div>
</div>
<div class="ui segment">
<table class="ui very basic fluid table">
<thead>
<tr>
<th>Valor Promesa</th>
<th>Valor Util</th>
<th>UF/</th>
<th>Comisión</th>
<th>
Fecha Promesa <br/>
Fecha Ingreso
</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{$format->ufs($venta->valor)}}</td>
<td>{{$format->ufs($venta->util())}}</td>
<td>{{$format->number($venta->util() / $venta->propiedad()->vendible(), 2)}} UF/</td>
<td>0,00 UF (0,00%)</td>
<td>
{{$venta->fecha->format('d-m-Y')}}<br/>
{{$venta->fechaIngreso->format('d-m-Y')}}
</td>
</tr>
</tbody>
</table>
</div>