@extends('layouts.app') @section('title', 'Gestión de Clientes') @section('content')
| ID | Nombre Completo | Teléfono | Tipo | Ciudad | Estado | Fecha Registro | Acciones | |
|---|---|---|---|---|---|---|---|---|
| {{ $cliente->id }} |
{{ strtoupper(substr($cliente->nombre, 0, 1)) }}
{{ $cliente->nombre }} {{ $cliente->apellido }}
@if($cliente->empresa)
{{ $cliente->empresa }} @endif |
{{ $cliente->email }} | {{ $cliente->telefono }} | @if($cliente->tipo_cliente == 'empresa') Empresa @else Individual @endif | {{ $cliente->ciudad }} | @if($cliente->estado) Activo @else Inactivo @endif | {{ $cliente->fecha_registro->format('d/m/Y') }} | |
|
No se encontraron clientes |
||||||||