Files
oficial/resources/views/proyectos/disponibles.blade.php
2021-03-25 21:20:49 -03:00

36 lines
960 B
PHP

@extends('layout.base')
@section('content')
<div class="row page-heading">
<div class="col h3">Unidades Disponibles - <a href="{{url('', ['p' => 'proyectos', 'a' => 'show', 'proyecto' => $proyecto->id])}}">{{$proyecto->descripcion}}</a> [{{count($proyecto->unidadesDisponibles())}}]</div>
</div>
<br />
<div class="row">
<table class="table table-striped">
<thead>
<tr>
<th>Tipo</th>
<th>Unidad</th>
<th>Piso</th>
<th> Vendibles</th>
<th>Valor Referencial</th>
</tr>
</thead>
<tbody>
@foreach ($proyecto->unidadesDisponibles() as $unidad)
<tr>
<td>{{ucwords($unidad->tipo()->descripcion)}}</td>
<td>{{$unidad->descripcion}}</td>
<td>{{$unidad->piso}}</td>
<td>
@if ($unidad->tipo == 1)
{{$unidad->m2('vendible')}}
@endif
</td>
<td>{{format('ufs', (($unidad->precio()) ? $unidad->precio()->valor : $unidad->valor) ?: 0, null, true)}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection