@extends('layout.base') @section('page_title') Venta {{$venta->proyecto()->descripcion}} {{$venta->propiedad()->summary()}} @endsection @section('page_content')

{{$venta->proyecto()->descripcion}}
{{$venta->propiedad()->summary()}}

@include('ventas.show.propietario')

@if ($venta->currentEstado()->tipoEstadoVenta->activa) Desistir Ceder @else
{{ucwords($venta->currentEstado()->tipoEstadoVenta->descripcion)}} ( {{$format->pesos($venta->resciliacion()->valor)}} )
@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