@extends ('layouts.admin')
@section ('contenido')
@include('inmobiliaria.ventas.search')
Id |
Tipo Doc. |
Num. Documento |
Lote |
Cliente |
Fecha Venta |
Tipo Pago |
MONTO |
Opciones |
@foreach ($ventas as $ven)
{{ $ven->idVenta}} |
{{ $ven->VTAtipDoc}} |
{{ $ven->VTAnumSer}} - {{ $ven->VTAnumDoc}} |
{{ $ven->PDTnombre}} |
{{ $ven->INTnumDoc}} |
{{ $ven->VTAfechaV}} |
@if($ven->VTAtipPag=="CON")
CONTADO
@elseif($ven->VTAtipPag=="CRE")
CRÉDITO
@endif
|
S/. {{ $ven->VTAmonTot}} |
|
@include ('inmobiliaria.ventas.modal')
@endforeach
{{$ventas->render()}}
@endsection