Uploading the file inside the ajax request

0

I am trying to capture data via ajax request, for file upload and is not returning value for the photo. Can anyone help me?

Ajax:

Outputtothedataconsole(thephotopathisselected!):

PersonControl:

publicfunctionpostStatePath(Request$request){

//Receboinformaçõesdoform$pessoas_para_cadastro=$request->input('pessoas_para_cadastro');$pessoas_para_cadastro=json_decode($pessoas_para_cadastro,true);//Façolooppelaspessoasdoarrayforeach($pessoas_para_cadastroas$p):print_r($p['foto']);echo"</br>";    
        print_r($p['documento_foto']);

        $teste1 = $request->input($p['foto']);
        print_r($teste1);
        echo "</br>";

        if($request->hasFile($p['foto'])){
            echo "Foto hasfile achou!";
        }

        $teste = $request->file($p['foto']);
        echo "Foto hasfile: ";
        print_r($teste);
        exit;

}

    
asked by anonymous 13.09.2018 / 20:48

0 answers