Eloquent Laravel

0 respostas
eloquentphplaravel
V

Pessoal, sabe me dizer porque mesmo não passando pelo when o get me retorna todos os dados da tabela??

$produtos = VendasModel::when(Request::input('modalidade'),function($query){
  $query->where('CODIGO_MODALIDADE',Request::input('modalidade'));
})
->when(Request::input('adquirente'),function($query){
  $query->where('ADQUIRENTE',Request::input('adquirente'));

})->get();
Criado 9 de junho de 2020
Respostas 0
Participantes 1