Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $path=Storage::disk('local')->url('screenshot1.jpg');
  2.  
  3. 'disks' => [
  4.  
  5. 'local' => [
  6. 'driver' => 'local',
  7. 'root' => storage_path('app/public/images'),
  8. ],
  9.  
  10. 'public' => [
  11. 'driver' => 'local',
  12. 'root' => storage_path('app/public/images'),
  13. 'visibility' => 'public',
  14. ],
  15.  
  16. 's3' => [
  17. 'driver' => 's3',
  18. 'key' => 'your-key',
  19. 'secret' => 'your-secret',
  20. 'region' => 'your-region',
  21. 'bucket' => 'your-bucket',
  22. ],
  23.  
  24. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement