Skip to content

Commit d3a5208

Browse files
committed
fix links
1 parent cbb2c31 commit d3a5208

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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

109109
create 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

Comments
 (0)