@extends('fragments.fullTemplate') @section('titulo') Cotizaciones @endsection @section('contenido') @php // @endphp
@include('fragments.navs', [ "navs" => [ [ "active" => 0, "url" => "cotizaciones", "name" => "Cotizaciones" ], [ "active" => 1, "url" => "cotizaciones/prospectos", "name" => "Cotizaciones de prospecto de clientes" ] ] ])
@if(session()->has('success')) @endif @if(session()->has('warning')) @endif @if(session()->has('error')) @endif @if (count($errors) > 0) @endif
Nueva Cotización
{{--
Regresar
--}}
{{--

{{$cotizaciones->count()}} resultados en esta página

--}} @if($cotizaciones->count()) @foreach ($cotizaciones as $cotizacion) @endforeach @else @endif
Folio Contactos Empresa
{{$cotizacion->folio}} @if($cotizacion->cliente) @foreach($cotizacion->cliente->contactos as $contactos){{$contactos->nombre_contacto.", "}}@endforeach @endif @if ($cotizacion->cliente && $cotizacion->cliente->nombre_empresa) {{$cotizacion->cliente->nombre_empresa}} @else Cliente prospecto @endif
{{-- --}} @if(!empty($cotizacion->cliente->prospecto)) @endif {{-- --}}
No se encontraron registros
{{--$cotizaciones->links("pagination::bootstrap-4")--}}
{{--@include('Cotizaciones.new_cotizacion') @include('Cotizaciones.edit_cotizacion')--}} @include('Clientes.edit_cliente') @include('Cotizaciones.delete_cotizacion_lista') @include('Cotizaciones.show_nota') @endsection