Files
This commit is contained in:
@ -26,7 +26,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{{\App\Helper\Format::number($venta->propietario()->rut, 0)}}-{{$venta->propietario()->dv}}</td>
|
||||
<td>{{$format->number($venta->propietario()->rut, 0)}}-{{$venta->propietario()->dv}}</td>
|
||||
<td>{{($venta->propietario()->direccion()) ? $venta->propietario()->direccion()->completa() : ''}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -79,7 +79,7 @@
|
||||
<td>{{ucwords($venta->unidad()->tipo()->descripcion)}} {{$venta->unidad()->tipologia()->tipologia()->descripcion}}</td>
|
||||
<td>{{$venta->unidad()->descripcion}}</td>
|
||||
<td>{{$venta->unidad()->piso}}</td>
|
||||
<td>{{\App\Helper\Format::number($venta->unidad()->m2(), 2)}} m²</td>
|
||||
<td>{{$format->number($venta->unidad()->m2(), 2)}} m²</td>
|
||||
<td class="text-right">
|
||||
@if ($venta->unidad()->precio($venta->fecha()))
|
||||
{{format('ufs', $venta->unidad()->precio($venta->fecha())->valor)}} UF
|
||||
@ -111,7 +111,7 @@
|
||||
<td>{{$unidad->unidad()->piso}}</td>
|
||||
<td>
|
||||
@if ($unidad->unidad()->tipo()->descripcion == 'departamento')
|
||||
{{\App\Helper\Format::number($unidad->unidad()->m2(), 2)}} m²
|
||||
{{$format->number($unidad->unidad()->m2(), 2)}} m²
|
||||
@endif
|
||||
</td>
|
||||
<td class="text-right">
|
||||
@ -171,7 +171,7 @@
|
||||
<td>{{format('ufs', $venta->valor_uf)}} UF</td>
|
||||
<td>{{format('ufs', $venta->valorFinal())}} UF</td>
|
||||
<td>{{format('ufs', $venta->uf_m2(), null, true)}}/m²</td>
|
||||
<td>{{format('ufs', $venta->valorComision())}} UF ({{\App\Helper\Format::number($venta->comision() * 100, 2)}}%)
|
||||
<td>{{format('ufs', $venta->valorComision())}} UF ({{$format->number($venta->comision() * 100, 2)}}%)
|
||||
@if ($venta->agente != 0)
|
||||
<br />
|
||||
{{$venta->agente()->agente()->agente()->descripcion}}
|
||||
|
Reference in New Issue
Block a user