This gist was getting a lot of comments/questions, but since there are no notifications when someone replies to a gist, I've moved the setup instructions and a bunch of sample code to a dedicated Github repo.
Step by step instructions on how to get the various keys needed to work with Google Drive can be found on the Github repo as well:
https://github.com/ivanvermeyen/laravel-google-drive-demo/blob/master/README.md#create-your-google-drive-api-keys
Take a look at the commit history to get a quick overview of the demo code I've been adding:
If you have questions or comments, please create an issue on the Github repo. This is easier to follow up and enables others to find the answers as well.
I modified your code and i was able to get the reference file i uploaded Google drive to my database
thanks very much.
$fileName = $file->getClientOriginalName();
$dir = '/';
$recursive = false; // Get subdirectories also?
$contents = collect(Storage::cloud()->listContents($dir, $recursive));
$dir = $contents->where('type', '=', 'dir')->first();
if ( ! $dir) {
return 'Directory does not exist!';
}
$pathName = $dir['path'].$fileName;
$uploaded = Storage::cloud()->put($pathName, file_get_contents($file->getRealPath()));
if ($uploaded) {
//create new object
$indocument = new Document;
//get input and store into variables set all input to insert to db
$indocument->candidates_name = $request->candidates_name;
$indocument->years_of_experience = $request->years_of_experience;
$indocument->city_id = $request->location;
$indocument->save();