Skip to content

Instantly share code, notes, and snippets.

@mdunbavan
Created July 28, 2015 16:03
Show Gist options
  • Select an option

  • Save mdunbavan/a05802e9cd04db66484d to your computer and use it in GitHub Desktop.

Select an option

Save mdunbavan/a05802e9cd04db66484d to your computer and use it in GitHub Desktop.
Image upload in controller
$path = str_replace("/home/vagrant/projects/scoff/scoff-api/public", "", public_path('images/offers'));
Image::make($file->getRealPath())
->resize(600, 600)
->save(public_path('images/offers').$filename);
$data['image'] = $path.$filename;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment