We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee45dfc + 6ce7607 commit d2e5ad8Copy full SHA for d2e5ad8
readme.md
@@ -51,9 +51,9 @@ or
51
$file = $fa->save('image', 'custimized_filename'); // => custimized_filename.jpg
52
53
54
-### Get file fullpath
+### Get file fullpath (abstract path from Laravel Storage)
55
56
- $fa->getFullPath('wfj412.jpg'); // => '/images/wfj412.jpg'
+ $fa->getPath('wfj412.jpg'); // => '/images/wfj412.jpg'
57
58
### Routing your files
59
@@ -79,7 +79,7 @@ you can use url() method to get it
79
80
* Get file content
81
82
- \Storage::get($fa->getPath('wfj412.jpg'));
+ \Storage::get($fa->('wfj412.jpg'));
83
84
* Write files
85
0 commit comments