Lista de Servicios
@if ($data->isEmpty())
No hay servicios registrados.
@else
Nombre |
Duración |
Precio |
Editar |
Eliminar |
@foreach ($data as $item)
{{ $item->nombre }} |
{{ $item->duration }} |
@if (!empty($item->precio))
₡{{ $item->precio }}
@else
-
@endif
|
|
|
@endforeach
@endif