Commit e2d88b48 authored by Marcos Albano's avatar Marcos Albano 💬

Ajuste na consulta de titulos

parent ebc27d36
......@@ -30,6 +30,7 @@ class TituloController extends Controller
public function index()
{
$documentoPessoa = DocumentoPessoa::where('cpf', $this->request->cpf)->with('pessoa')->first();
$docPessoa = Lote::where('cpf', $this->request->cpf)->first();
if ($documentoPessoa) {
$pessoas = Pessoa::where('id', $documentoPessoa->pessoa_id)->with('documentoPessoa', 'pessoaLote')->get();
foreach ($pessoas as $pessoa) {
......@@ -94,7 +95,10 @@ class TituloController extends Controller
]
);
}
} else {
} else if( $docPessoa){
return view('cpfSemPessoa')->with(['cpf' => $this->request->cpf]);
}
else {
return view('cpfInvalido')->with(['cpf' => $this->request->cpf]);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment