Configuración

@include('livewire.configuracion._nav')
@if ($tipos->isEmpty())

Todavía no hay tipos de cuota.

@else
@foreach ($tipos as $tipo)

{{ $tipo->nombre }}

{{ number_format($tipo->importe, 2, ',', '.') }} € · {{ ucfirst($tipo->periodicidad) }}

@endforeach
@endif

{{ $editando ? 'Editar tipo de cuota' : 'Nuevo tipo de cuota' }}

Guardar