Advertisement
tegarkurniawan

upload file

Jul 11th, 2016
37,818
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if ($request->file('avatar')) {
  2.  
  3. $image = $request->file('avatar');
  4.  
  5. $imageName = $image->getClientOriginalName();
  6.  
  7. $input['avatar'] = $imageName;
  8.  
  9. $destinationPath = 'avatar';
  10.  
  11. $request->file('avatar')->move($destinationPath, $imageName);
  12. } else {
  13. $input['avatar'] = 'default.png';
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement