-1
Sirs,
I am having the following error "The "/tmp/php63F4kk" file does not exist or is not readable." in Laravel, I am entering the information as follows:
if($request->hasfile('foto'))
{
$image = $request->file('foto');
$name = $image->getClientOriginalExtension();
$fileName = time() . '.' . $name;
$image->move(public_path().'/fotos/sobre/', $fileName);
$data = $fileName;
}
$sobre = new SobreDestino();
$sobre->destino_id = $request->id_destino;
$sobre->descricao = $request->sobre;
$sobre->titulo = $request->titulo_foto;
$sobre->foto = $data;
$sobre->save();
Where can I be missing?
Thank you
Thanks worked out!
– Cristiano Facirolli