Base
This commit is contained in:
36
resources/views/proyectos/disponibles.blade.php
Normal file
36
resources/views/proyectos/disponibles.blade.php
Normal file
@ -0,0 +1,36 @@
|
||||
@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>m² 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
|
Reference in New Issue
Block a user