Skip to content

Instantly share code, notes, and snippets.

@pinoywebs123
Created February 11, 2019 12:27
Show Gist options
  • Save pinoywebs123/5b887d7a9a6f111b3802f6fff4239a8f to your computer and use it in GitHub Desktop.
Save pinoywebs123/5b887d7a9a6f111b3802f6fff4239a8f to your computer and use it in GitHub Desktop.
upload image
$this->validate($request, [
'image'=> 'image|mimes:jpeg,jpg,png,gif|required|max:10000'
]);
$image = $request->file('image');
$name = time().'.'.$image->getClientOriginalExtension();
$destinationPath = public_path('/images');
$image->move($destinationPath, $name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment