@extends('ventas.base') @php $showPropietario = true; @endphp @section('venta_content')
@if ($venta->currentEstado()->tipoEstadoVenta->activa) Desistir Ceder @else
{{ucwords($venta->currentEstado()->tipoEstadoVenta->descripcion)}} ( {{$format->pesos($venta->resciliacion()->valor ?? 0)}} )
@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