Se eliminan rutas de otras clases

Este commit está contenido en:
2025-10-15 21:19:46 -03:00
padre c75b3fa8d2
commit 383e46456b
Se han modificado 11 ficheros con 0 adiciones y 263 borrados

Ver fichero

@@ -1,15 +0,0 @@
<html>
<body>
<h1>Buscador</h1>
<form action="/buscador" method="post">
@csrf
<input name="contenido" type="text">
<button type="submit">Buscar</button>
</form>
@error('contenido')
<div style="color: red;">{{ $message }}</div>
@enderror
</body>
</html>

Ver fichero

@@ -1,9 +0,0 @@
<div>
<livewire:contador />
<livewire:contador />
<livewire:buscador />
@livewireScripts
</div>

Ver fichero

@@ -1,19 +0,0 @@
<div>
<input type="text" name="nombreABuscar" wire:model="nombre">
<button wire:click="buscar"> Buscar </button>
@error('nombre')
{{ $message }}
@enderror
<ul>
@forelse ($resultados as $album)
<li>{{ $album->Title }} - {{ $album->artista->Name }} </li>
@empty
No se encontraron resultados
@endforelse
</ul>
</div>

Ver fichero

@@ -1,7 +0,0 @@
<div>
<h1>{{ $cantidad }}</h1>
<button wire:click="incrementar">+</button>
<button wire:click="decrementar">-</button>
</div>

Ver fichero

@@ -1,8 +0,0 @@
<html>
<body>
<h1>Página 1</h1>
<p>Hola a {{ $nombrePersona }}!</p>
</body>
</html>

Ver fichero

@@ -1,3 +0,0 @@
<x-layouts.app title="Página de Inicio">
<p class="font-bold text-red-500">Este es el contenido de la página de inicio.</p>
</x-layouts.app>