@extends('layouts.admin') @section('content')
| ID | Nombre | Celular | Tienda | Ciudad | Ciudad ID | NIT / Cédula | Términos | Leído | Estado | Creado | Actualizado | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $contact->id }} | {{ \Illuminate\Support\Str::limit($contact->name, 40) }} | {{ \Illuminate\Support\Str::limit($contact->email, 45) }} | {{ $contact->phone }} | {{ \Illuminate\Support\Str::limit($contact->business_name ?? '-', 40) }} | {{ \Illuminate\Support\Str::limit($cityName, 35) }} | {{ $contact->city_id ?? '-' }} | {{ $contact->nit ?? '-' }} | @if($contact->terms_accepted) Sí @else No @endif | @if($contact->read) Sí @else No @endif | @if($contact->state === 'Existente') {{ $contact->state }} @else {{ $contact->state }} @endif |
{{ $contact->created_at->format('d/m/Y') }}
{{ $contact->created_at->format('H:i') }}
|
{{ $contact->updated_at->format('d/m/Y') }}
{{ $contact->updated_at->format('H:i') }}
|