@extends('layouts.main') @section('title') {{ __('Ver Visita') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content') {!! Form::open([ 'route' => ['visits.update', $list->id], 'method' => 'PATCH', 'data-parsley-validate', 'files' => true, 'id' => 'myForm', ]) !!}

Datos de Visita

{{ Form::label('date', __('Fecha'), ['class' => 'form-label col-12 ']) }}

{{ $list->date }}

{{ Form::label('status', __('Estatus'), ['class' => 'form-label col-12 ']) }}

{{ $list->status }}

{{ Form::label('status', __('Pre Aprobacion'), ['class' => 'form-label col-12 ']) }} {{ $list->approval_id }}

Datos de Cliente

{{ Form::label('date', __('Nombre y Apellido'), ['class' => 'form-label col-12 ']) }}

{{ $customer->name }}

{{ Form::label('status', __('Email'), ['class' => 'form-label col-12 ']) }}

{{ $customer->email }}

{{ Form::label('source_income', __('Nùmero de Telefono'), ['class' => 'form-label col-12 ']) }}

{{ $customer->mobile }}


Datos de Propiedad

{{ Form::label('date', __('Nombre'), ['class' => 'form-label col-12 ']) }}

{{ $property->title }}

{{ Form::label('status', __('Monto'), ['class' => 'form-label col-12 ']) }}

{{ $property->price }} $

{{ Form::label('status', __('Imagen'), ['class' => 'form-label col-12 ']) }} @if (isset($property->title_image))
Image
@endif
{{ Form::label('compania', __('Modelo'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}

{{ $property->company }}

{{ Form::label('deposito', __('Meses en depósito'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}

{{ $property->month_deposits }}

{{ Form::label('adelanto', __('Meses en adelanto'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}

{{ $property->month_in_advance }}

{{ Form::label('porcentaje_inicial', __('Porcentaje de Pago Inicial'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}

{{ $property->percentage_initial_payment }}

{{ Form::label('inicial', __('Pago inicial'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}

{{ $property->initial_payment }}

{{ Form::label('cuotas', __('Número de cuotas'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}

{{ $property->number_quotes }}

{{ Form::label('propietario', __('Propietario'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }} @if (!empty($owner) && (!empty($owner->name) || !empty($owner->mobile)))

{{ $owner->name . ' (' . $owner->mobile . ')' }}

@else

-

{{-- O puedes dejarlo vacío

si prefieres --}} @endif
{{ Form::label('fecha', __('Fecha'), ['class' => 'form-label col-12 ']) }}
{{ Form::label('hora', __('Hora'), ['class' => 'form-label col-12 ']) }}

Cambiar Estatus

{{ Form::label('status', __('Estatus'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}
   
{!! Form::close() !!} @endsection @section('script') @endsection