@csrf
Datos generales
{{-- --}}
{{-- --}}
@if($cotizacion->estado <> 'Orden de venta')
Equipos
Agrega los equipos que necesites que esten disponibles para asignarlos a un servicio

@foreach ($containers as $container) @endforeach
Tipo Eliminar
{{$loop->iteration}} {{$container->cont_type}}
@include('detalleCotizacionInicial.tipos.container')
@csrf
Detalle de servicio
Antes de asignar un servicio recuerda seleccionar para que equipo es.

@php $totalPago=0; $sub=0; $totalCantidad=0; $totalPunitario=0; $totalSTotal=0; $totalIVA=0; @endphp @foreach ($ofertServices as $item) @php $sub=$item->valor*$item->cantidad; if($item->iva == 1){ $valorIva = $sub*0.13; } else { $valorIva=0; } $total=$sub + $valorIva; @endphp @php $totalCantidad+=$item->cantidad; $totalPunitario+=$item->valor; $totalSTotal+=$sub; $totalIVA+=$valorIva; $totalPago += $total; @endphp @endforeach
item Equipo Servicio Cantidad Precio unitario Sub total IVA Total Operaciones
{{$loop->iteration}} {{$item->cont_type}} {{$item->serv_name}} {{$item->cantidad}} $ {{number_format($item->valor,2)}}$ {{number_format($sub, 2 ) }} $ {{number_format($valorIva, 2 )}} $ {{number_format($total, 2 )}}
Monto total {{$totalCantidad}} $ {{number_format($totalPunitario, 2 ) }} $ {{number_format($totalSTotal, 2 ) }} $ {{number_format($totalIVA, 2 ) }} $ {{number_format($totalPago, 2 ) }}
{{-- --}}
@csrf
Notas
@endif