@extends('layouts.app') @section('title', 'Clientes') @section('content')
| Nombre | Servicio | IP | Estado | Plan Internet | Router | Dirección | Acciones |
|---|---|---|---|---|---|---|---|
|
{{ $cliente->nombre }} {{ $cliente->apellido }}
{{ $cliente->email }}
|
{{ $cliente->servicio ?? 'No especificado' }} |
{{ $cliente->ip ?? 'Sin asignar' }}
|
@if($cliente->estado) Activo @else Inactivo @endif |
@if($cliente->planInternet)
{{ $cliente->planInternet->nombre }}
@else
Sin plan
@endif
Bs. {{ number_format($cliente->planInternet->precio, 2) }} |
{{ $cliente->router ?? 'No asignado' }} |
{{ $cliente->direccion }}
@if($cliente->zona)
{{ $cliente->zona->nombre }} @endif |