Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Created February 2, 2018 18:51
Show Gist options
  • Save mitrallex/31a0378fa5616670b7f7fdca899195ca to your computer and use it in GitHub Desktop.
Save mitrallex/31a0378fa5616670b7f7fdca899195ca to your computer and use it in GitHub Desktop.
laravel-file-hosting
if (Storage::putFileAs('/public/' . $this->getUserDir() . '/' . $type . '/', $file, $request['name'] . '.' . $ext)) {
return $model::create([
'name' => $request['name'],
'type' => $type,
'extension' => $ext,
'user_id' => Auth::id()
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment