Level 102
Did you try searching the forums?
https://laracasts.com/discuss/channels/laravel/laravel-uploading-a-tmp-file-instead-of-image
1 like
Hello,
I want to upload multiple images but the problem is its being stroing as .tmp file.
here is my code.
if($files=$request->file('cheque_image')){
foreach($files as $file){
$name=time().'_'.$file->getClientOriginalName();
$file->move(public_path('assets/images/cheques/',$name));
}
}
if($files=$request->file('cheque_image')){
foreach($files as $file){
$name=time().'_'.$file->getClientOriginalName();
$file->move(public_path() . 'assets/images/cheques/', $name);
}
}
Please or to participate in this conversation.