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

@yield('title')

@endsection @section('content')

Datos de Contrato

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

{{ $res->property->title }}

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

{{ $res->customer->name }}

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

{{ $res->collection_id }}

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

{{ $res->init }}

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

{{ $res->end }}

{{ Form::label('compania', __('Compañia'), ['class' => 'form-label col-12 '], ['disabled' => 'disabled']) }}

{{ $res->property->company }}

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

{{ $res->property->month_deposits }}

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

{{ $res->property->month_in_advance }}

Cuotas de Contrato

@foreach ($quotes as $an) @if ($an->is_paid == 0) @else @endif @endforeach
Fecha Monto Service Fee Comisión Pagado
{{ $an->end_date }} {{ $an->amount }} {{ $an->service_fee }} {{ $an->comision }}NOSI
Fecha Monto Service Fee Comisión Pagado
   
{!! Form::close() !!}
@endsection @section('script') @endsection