@extends('layouts.panel') @section('title', 'Servicios') @section('content')
@forelse ($services as $service) @empty @endforelse
Nombre Línea Unidad de cobro Estado Acciones
{{ $service->name }} @if($service->description)
{{ Str::limit($service->description, 60) }}
@endif
{{ $service->serviceLineLabel() }} {{ $service->billingUnitLabel() }} @if($service->is_active) Activo @else Inactivo @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
No hay servicios registrados aún.
{{ $services->links() }}
@endsection