I have this mysql statement
public function mayores(Request $req){$taquito=DB::select('select * from clientes where edad = ?', [18]);view('Layouts.mayores',compact('taquito'));}
to get all my clients older than 18 years old which is inside my controller and I use this route to enter the page Route::get('/mayores','Pincipalcontroller@mayores');
"Principalcontroller" being my controller where I have all the sentences and everything comes to this view
but always my result ends up being a totally blank page, you can not even see what is the menu linked to the view or the columns of the table without filling any solution? I have impressions to see all the clients which works well but when I try to filter them I get everything wrong and I can not find the solution