Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Last active February 2, 2018 19:34
Show Gist options
  • Save mitrallex/346cd5d4ab3292dc108b341e1bebafa8 to your computer and use it in GitHub Desktop.
Save mitrallex/346cd5d4ab3292dc108b341e1bebafa8 to your computer and use it in GitHub Desktop.
laravel-file-hosting
if (Storage::disk('local')->exists($old_filename)) {
if (Storage::disk('local')->move($old_filename, $new_filename)) {
$file->name = $request['name'];
return response()->json($file->save());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment