@extends('layouts.app') @section('title', 'Detalles del Plan de Internet') @section('content')
| Nombre: | {{ $planInternet->nombre }} |
|---|---|
| Tipo: | {{ ucfirst($planInternet->tipo) }} |
| Velocidad de Bajada: | {{ number_format($planInternet->velocidad_bajada, 1) }} Mbps |
| Velocidad de Subida: | {{ number_format($planInternet->velocidad_subida, 1) }} Mbps |
| Precio Mensual: | Bs. {{ number_format($planInternet->precio, 2) }} |
|---|---|
| Costo de Instalaci贸n: | Bs. {{ number_format($planInternet->instalacion, 2) }} |
| Clientes Activos: | {{ $planInternet->activos ?? 0 }} |
| Estado: | @if($planInternet->activo) Activo @else Inactivo @endif |
{{ $planInternet->descripcion }}
| Cliente | Tel茅fono | Zona | Estado | Fecha de Registro |
|---|---|---|---|---|
|
{{ $cliente->nombre }} {{ $cliente->apellido }}
{{ $cliente->email }} |
{{ $cliente->telefono }} | @if($cliente->zona) {{ $cliente->zona->nombre }} @else Sin zona @endif | @if($cliente->estado) Activo @else Inactivo @endif | {{ $cliente->fecha_registro ?? $cliente->created_at->format('d/m/Y') }} |
No hay clientes con este plan actualmente