Posts by guilherme.ramos • 9 points
5 posts
-
0
votes1
answer26
viewsQ: I want to pass some data on $request in a way that does the same when you send something through the form
$data = $request->all(); $data['id_cliente']= $sistemas->id_cliente; $data['id_sistema']= $sistemas->id_sistema; $data['id_versao_atual']= $sistemas->id_versao_atual;…
-
0
votes1
answer115
viewsQ: How to make an auto complete in the Standard
<input class="typeahead form-control" style="margin:0px auto;width:200px;" type="text"> </div> <script type="text/javascript"> var path =…
-
-1
votes1
answer270
viewsQ: How to filter records
public Function search1(Request $request) { $data = Cliente::where( 'nome','LIKe', $request->nome . '%' 'situacao',$request->situacao . '=')->get(); return view('cliente.search', […
-
0
votes1
answer393
viewsQ: Take a variable from the url, pass method get Laravel
How do I get this function to take the values of the url passed by method get public function searchBy($nome, $situacao){ $params['nome'] = array('value'=>'%' . $nome . '%',…
-
0
votes1
answer365
viewsQ: How to pass form parameter for an Laravel route in an API?
Errorexception in Urlgenerationexception.php line 17: Missing required Parameters for [Route: v1.clientes.search] [URI: v1/clients/search/{name}/{situation}]. (View: C: xampp htdocs api-updater…