@extends('layouts.admin') @section('tipo_equipos', 'active bg-gradient-primary') @section('css') @endsection @section('contenido')
{{ Session::get('mensaje') }}
@endif| Categoria | Tipo | Tarifa | Uso | Acciones |
|---|---|---|---|---|
| {{ $tipo_equipo->nombre }} | {{ $tipo_equipo->tipo }} | {{ $tipo_equipo->tarifa }} | @php // Construir la cadena de texto para TB-IB-TV-CM $checks = []; if ($tipo_equipo->TB) { $checks[] = 'TB'; } if ($tipo_equipo->IB) { $checks[] = 'IB'; } if ($tipo_equipo->TV) { $checks[] = 'TV'; } if ($tipo_equipo->CM) { $checks[] = 'CM'; } $checksString = implode('-', $checks); @endphp{{ $checksString }} |