Base
This commit is contained in:
66
resources/views/proyectos/por_vender.blade.php
Normal file
66
resources/views/proyectos/por_vender.blade.php
Normal file
@ -0,0 +1,66 @@
|
||||
@if (count($proyecto->unidades()) > 0 and $proyecto->valores()->estimados->departamentos->cantidad > 0)
|
||||
<tr>
|
||||
<td><a href="{{url('', ['p' => 'proyectos', 'a' => 'disponibles', 'proyecto' => $proyecto->id])}}">Por vender</a></td>
|
||||
<td colspan="2">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>% Por Vender</th>
|
||||
<th>m² promedio</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{{$proyecto->valores()->estimados->departamentos->cantidad}}</td>
|
||||
<td>{{\App\Helper\Format::number($proyecto->valores()->estimados->departamentos->cantidad / count($proyecto->unidades(1)) * 100, 2)}} %</td>
|
||||
<td>{!!format('m2', $proyecto->valores()->estimados->departamentos->mts->vendibles->promedio, null, true)!!}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>UF Estimado<br />
|
||||
Bruto - Neto
|
||||
</th>
|
||||
<th>UF/m² Neto</th>
|
||||
<th>UF promedio</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{{format('ufs', $proyecto->valores()->estimados->ingreso->bruto, null, true)}} - {{format('ufs', $proyecto->valores()->estimados->ingreso->neto, null, true)}}</td>
|
||||
<td>{{format('ufs', $proyecto->valores()->estimados->departamentos->uf_m2->promedio, null, true)}}</td>
|
||||
<td>{{format('ufs', $proyecto->valores()->estimados->departamentos->precio->promedio, null, true)}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Estacionamientos</th>
|
||||
<th>Bodegas</th>
|
||||
<th>Valor Estimado</th>
|
||||
</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{{count($proyecto->unidadesDisponibles(2))}}</td>
|
||||
<td>{{count($proyecto->unidadesDisponibles(3))}}</td>
|
||||
<td>{{format('ufs', $proyecto->valores()->estimados->otros->valor, null, true)}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Operador</th>
|
||||
<th>Bono Pie</th>
|
||||
<th>Premios</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{{format('ufs', $proyecto->valores()->estimados->comision, null, true)}}</td>
|
||||
<td>{{format('ufs', $proyecto->valores()->estimados->bono->valor, null, true)}}</td>
|
||||
<td>{{format('ufs', $proyecto->valores()->estimados->premios(), null, true)}}</td>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
Reference in New Issue
Block a user