Route::post('/upload', function (Request $request) { Storage::disk('google')->putFileAs('YOU CAN PUT YOUR SUB FOLDER HERE',$request->file('thing'),'file_name.jpg');})->name('upload');
@yeissonpinilla17303 жыл бұрын
Is there any way to get the file's id as soon as I upload it? Without having to get all the files, and look for the last one added and get that one's id? Thanks for the video, it's been useful.
@lucaspultz71272 жыл бұрын
I want know about it too
@educabol15963 жыл бұрын
how to show video in blade?
@edwardc99973 жыл бұрын
How to upload large file?
@edwardc99973 жыл бұрын
How to correct this error : Maximum execution time of 60 seconds exceeded ?
@myPHPnotes3 жыл бұрын
$seconds = 400; // or number of seconds you need the execute the upload commad. set_time_limit ( $seconds ): Add above code on before the upload statement