Image not showing on production

Please my Image is uploading fine on localhost until on production it refused to upload and having done
php artisan storage:link
it still not showing the image .I check my the
storage->app->public
i could see my uploaded images
This is my table code
FileUpload::make('image')
                        ->label('Image')
                        ->disk('public')
                        ->directory('profile')
                        ->visibility('private')
Screenshot_2023-11-02_at_12.53.40.png
Solution
Is the URL correct?
Was this page helpful?