@extends('layouts.app') @section('title', 'Planes de Internet') @section('content')
| Plan | Tipo | Velocidad | Precio | Instalación | Clientes | Estado | Acciones |
|---|---|---|---|---|---|---|---|
|
{{ $plan->nombre }}
{{ Str::limit($plan->descripcion, 60) }} |
{{ ucfirst($plan->tipo) }} |
{{ number_format($plan->velocidad_bajada, 0) }} Mbps
{{ number_format($plan->velocidad_subida, 0) }} Mbps
|
Bs. {{ number_format($plan->precio, 0) }} | Bs. {{ number_format($plan->instalacion, 0) }} | {{ $plan->activos ?? 0 }} | @if($plan->activo) Activo @else Inactivo @endif | |
|
No hay planes de internet registrados Crear primer plan |
|||||||