Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if ($request->file('avatar')) {
- $image = $request->file('avatar');
- $imageName = $image->getClientOriginalName();
- $input['avatar'] = $imageName;
- $destinationPath = 'avatar';
- $request->file('avatar')->move($destinationPath, $imageName);
- } else {
- $input['avatar'] = 'default.png';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement