tengo la siguiente ruta para realizar la consulta a la bd por medio del modelo:
Código PHP :
Route::get('producto/{id}', function($id) { $productos = Producto::where('categoria_id','=',$id)->get(); return View::make('producto/articulo/list')->with('productos', $productos); });
y poseo mi vista llamada list.blade.php
Código PHP :
@extends ('layout') @section ('title') Lista de Productos @stop @section ('content') <div class="row"> <div class="form-group col-md-8"> <h1>Lista de Productos</h1> <p> <a href="{{route('productos.articulo.create')}}" class="btn btn-primary">Nuevo Producto</a> </p> <p class="navbar-text navbar-right"> Clasificar por: <select name="categoria_id"> @foreach(Categoria::all() as $categoria) <option value="{{ $categoria->id }}">{{ $categoria->nombre }}</option> @endforeach </select> {{link_to('producto/'.el valor de la categoria seleccionada, 'Ver')}} </p> </div> <div class="form-group col-md-8"> <table class="table table-striped"> <tr> <th>Nombre</th> <th>Categoria</th> <th>Cantidad</th> </tr> @foreach ($productos as $producto) <tr> <td>{{$producto->nombre}}</td> <td>{{$producto->categoria->nombre}}</td> <td>{{$producto->cantidad}}</td> </tr> @endforeach </table> </div> </div> @stop
EL PROBLEMA QUE TENGO COMO SE PUDIERON DAR CUENTA LA RUTA PRODUCTO RECIBE UN VALOR, CON EL CUAL REALIZA EL SELECT MUY BIEN.
¿COMO PUEDO PASAR EL VALOR SELECCIONADO DEL SELECT DE LA VISTA LIST.BLADE.PHP A MI RUTA PRODUCTO PARA QUE ME REALICE EL SELECT?