37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
|
@extends('layout.base')
|
||
|
|
||
|
@section('page_title')
|
||
|
Venta {{$venta->proyecto()->descripcion}} {{$venta->propiedad()->summary()}}
|
||
|
@endsection
|
||
|
|
||
|
@section('page_content')
|
||
|
<div class="ui container">
|
||
|
<div class="ui two column grid">
|
||
|
<div class="row">
|
||
|
<h1 class="four wide column header">
|
||
|
<div class="content">
|
||
|
<div class="ui dividing sub header">{{$venta->proyecto()->descripcion}}</div>
|
||
|
<a href="{{$urls->base}}/venta/{{$venta->id}}">
|
||
|
{{$venta->propiedad()->summary()}}
|
||
|
</a>
|
||
|
</div>
|
||
|
</h1>
|
||
|
@if (isset($showPropietario) and $showPropietario)
|
||
|
<div class="right floated column">
|
||
|
@include('ventas.show.propietario')
|
||
|
</div>
|
||
|
@endif
|
||
|
</div>
|
||
|
@hasSection('venta_subtitle')
|
||
|
<div class="row">
|
||
|
<h2 class="ui sub header column">
|
||
|
@yield('venta_subtitle')
|
||
|
</h2>
|
||
|
</div>
|
||
|
@endif
|
||
|
</div>
|
||
|
<br />
|
||
|
@yield('venta_content')
|
||
|
</div>
|
||
|
@endsection
|