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.
1 parent 1c16c74 commit 6ce7607Copy full SHA for 6ce7607
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