Does it load with this URL?
https://laravel.local/storage/documents/events/FILENAME.pdf
public_path('storage') will be in your public directory as public/storage. It is essentially putting a directory (via symbolic link) in the root of your website as https://example.com/storage.
Try changing:
'url' => env('APP_URL').'/documents/events',
To:
'url' => env('APP_URL').'/storage/documents/events',
See if that works.