TransWikia.com

problema con formulario en laravel

Stack Overflow en español Asked by Guillermo albornoz on January 1, 2021

Tengo el siguiente form el cual lo único que me interesa enviar es el arreglo del checkbox, pero no se que error estoy cometiendo(el cual debe ser tan básico) que al dar click en el botón no hace nada

<tbody>
                    <form method="POST" action="/emparejados">
                        @foreach ($inventarios as $inventario)
                            <tr>
                                <td><input type="checkbox" name="id[]" value="{{ $inventario->id }}"></td>
                                <td scope="row">{{ $inventario->sku }}</td>
                                <td>{{ $inventario->talla }}</td>
                                <td>{{ $inventario->pies }}</td>
                                <td>{{ $inventario->caja }}</td>
                                <td>{{ $inventario->created_at->format('d-m-Y') }}</td>
                                @foreach ($inventario->tienda as $tiendas)
                                    <td>{{ $tiendas->name }}</td>
                                @endforeach
                            </tr>
                        @endforeach
                        <input type="submit" class="btn btn-primary float-right" value="Enviar">
                    </form>
    
                </tbody>

mi ruta es la siguiente

Route::resource('emparejados', 'EmparejadoController');

y el controlador donde quiero recibir el array

public function destroy(Request $request, $id)
    {
        $id = $request->input('id[]');
        dd($id);
    }

pero al darle al botón enviar no hace nada

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP