@extends('layout.base')
@section('page_title')
Venta {{$venta->proyecto()->descripcion}} {{$venta->propiedad()->summary()}}
@endsection
@section('page_content')
{{$venta->propiedad()->summary()}}
@include('ventas.show.propietario')
@if ($venta->currentEstado()->tipoEstadoVenta->activa)
Desistir
Ceder
@endif
@include('ventas.show.propiedad')
@include('ventas.show.detalle')
@include('ventas.show.forma_pago', ['formaPago' => $venta->formaPago()])
@include('ventas.show.escritura')
@include('ventas.show.entrega')
@include('ventas.show.comentarios')
@endsection