@if($estimates->count() > 0)
| {{ __('messages.estimate_number') }} | {{ __('messages.date') }} | {{ __('messages.customer') }} | Email Estatus | {{ __('messages.total') }} | ABONO MINIMO | Agente | Estatus | {{ __('messages.view') }} | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| COT-{{ $estimate->id }} | {{ $estimate->formatted_estimate_date }} | {{ $estimate->customer->display_name }} @if($estimate->customer->cedula)({{ $estimate->customer->cedula }})@endif |
@if($estimate->status == 'DRAFT')
{{ $estimate->status }}
@elseif($estimate->status == 'SENT')
{{ $estimate->status }}
@elseif($estimate->status == 'VIEWED')
{{ $estimate->status }}
@elseif($estimate->status == 'EXPIRED')
{{ $estimate->status }}
@elseif($estimate->status == 'ACCEPTED')
{{ $estimate->status }}
@elseif($estimate->status == 'REJECTED')
{{ $estimate->status }}
@elseif($estimate->status == 'PRIMER RECORDATORIO')
RECORDATORIO #1
@elseif($estimate->status == 'SEGUNDO RECORDATORIO')
RECORDATORIO #2
@endif
|
{!! money($estimate->total, $estimate->currency_code) !!} | {{ $estimate->abonominimo }} | {{ $estimate->agente}} | @if($estimate->estatus == 'COTIZADO')
{{ $estimate->estatus }}
|
@endif
@if($estimate->estatus == 'POR COTIZAR')
{{ $estimate->estatus }}
|
@endif
@if($estimate->estatus == 'CONVERTIDO')
{{ $estimate->estatus }}
|
@endif
@if($estimate->estatus == 'PAGO WEB')
{{ $estimate->estatus }}
|
@endif
@if($estimate->estatus == 'RECORDATORIO #1 ENVIADO')
RECORDATORIO #1
|
@endif
@if($estimate->estatus == 'RECORDATORIO #2 ENVIADO')
RECORDATORIO #2
|
@endif
@if($estimate->estatus == 'NO APROBADO')
NO APROBADO
|
@endif
arrow_forward |
{{ __('messages.no_estimates_yet') }}