Laravel Eloquent

0

I'm trying to do this query but the $ test variable goes empty in the query but when I start it, I see it exists

namespace App\Http\Controllers;

use Illuminate\Http\Request;
Use App\User;

class BinarioController extends Controller
{
public function listanaoposicionados()
{
    $checar_patrocinador_posicionado_sql = User::where('indicacao', auth()->user()->name)->get();
    //dd($checar_patrocinador_posicionado_sql);

    foreach($checar_patrocinador_posicionado_sql as $patrocinado){

        $teste = $patrocinado->name;

        echo $teste;

        $verifica_existe_rede_binairo = User::where('referido_1','=',$teste )->orWhere('referido_2','=', $teste)->toSql();
        dd($verifica_existe_rede_binairo);

       //if($verifica_existe_rede_binairo->isEmpty()){ 
       //}

    }
     //return view('mmn.derramamento')->with('patrocinados',$patrocinados);
}

}

    
asked by anonymous 24.12.2017 / 22:58

0 answers