Skip to content

Instantly share code, notes, and snippets.

@Yiin
Created September 11, 2016 20:58
Show Gist options
  • Save Yiin/2fdb80ef00ae2aa4f9b2c0dd8baf8acb to your computer and use it in GitHub Desktop.
Save Yiin/2fdb80ef00ae2aa4f9b2c0dd8baf8acb to your computer and use it in GitHub Desktop.
private static function generateImage($request, $user, $file)
{
$path = "/storage/$user->id/";
$filename = str_random(30) . '.' . $file->getClientOriginalExtension();
$png_path = '';
$ext = $file->getClientOriginalExtension();
$file->move(public_path($path), $filename);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment