@@ -14,12 +14,12 @@ handle and upload files in `base64 data URI`, `base64 json format` and `normal
1414
1515- [ Install] ( #install )
1616- [ How to use] ( #how-to-use )
17- - [ Stream output] ( #how-to-use )
18- - [ Stream input] ( #how-to-use )
19- - [ Collect and store input files] ( #how-to-use )
17+ - [ Stream output] ( #stream-output )
18+ - [ Stream input] ( #stream-input )
19+ - [ Collect and store input files] ( #collect-and-store-input-files )
2020 - [ Create stream in Laravel Framework] ( #create-stream-in-laravel-framework )
21- - [ Download stream] ( #download-stream )
22- - [ Upload stream] ( #upload-stream )
21+ - [ Download stream] ( #resumable-chunk- download-stream-example-in-laravel )
22+ - [ Upload stream] ( #resumable-chunk- upload-stream-example-in-laravel )
2323- [ Change log] ( #change-log )
2424- [ Contributing] ( #contributing )
2525- [ Security] ( #security )
@@ -104,7 +104,7 @@ $file->saveAs($path);
104104
105105#### Create stream in Laravel Framework
106106
107- ###### Resumable chunk download stream example in Laravel
107+ ###### Resumable chunk download stream example in Laravel
108108
109109create a controller like the below and create an indirect resumable file stream in Laravel.
110110
@@ -177,14 +177,14 @@ class StreamInController extends Controller
177177 // or we can use file's original name
178178 $path = './path/to/'.$file->name;
179179 $file->saveAs($path);
180-
180+
181181 // ---------------------------------------------
182182
183- /**
183+ /**
184184 if you want advanced file upload (resumable and chunk)
185185 you can use the below code
186186 **/
187-
187+
188188 $inputName = 'media'; // html input's name
189189 $uploadPath = './path/to/address';
190190
0 commit comments