I am making a query to the DB from a view with eloquent to print a table, the case is that it works but before the table, where I have the query, it prints the array.
How should I do the query so that it only saves the data to be used in the table but does not print it on the page?
{{ $zero_users = DB::table('empleados')->where('estado', 0)->get() }}