@extends('adminlte::page') @section('title', 'Lista de Cotizaciones Web') @section('content_header')
| # | Nombres Completos | RUC | Teléfono | Estado | Fecha de Recepción | Acciones | |
|---|---|---|---|---|---|---|---|
| {{ $cotizacionWeb->id }} | {{ $cotizacionWeb->nombres_completos }} | {{ $cotizacionWeb->ruc }} | {{ $cotizacionWeb->email }} | @if($cotizacionWeb->telefono) {{ $cotizacionWeb->telefono }} @else N/A @endif | @if($cotizacionWeb->estado == 'pendiente') Pendiente @elseif($cotizacionWeb->estado == 'enviada') Enviada @elseif($cotizacionWeb->estado == 'cancelada') Cancelada @else {{ ucfirst($cotizacionWeb->estado) }} @endif | {{ $cotizacionWeb->created_at->format('d/m/Y H:i') }} |
|
| No hay cotizaciones web registradas | |||||||