@extends('ventas.base')
@php
$showPropietario = true;
@endphp
@section('venta_content')
@if ($venta->currentEstado()->tipoEstadoVenta->activa)
Desistir
Ceder
@else
@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