fileupload issue preview issue

i have set APP_URL=http://127.0.0.1:8000 in .env and i have also done php artisan storage:link
And uploading image like this
 FileUpload::make('kheltag_profile_image')
                            ->label("Upload Profile Image")
                            ->image()
                            ->disk('local')
                            ->afterStateHydrated(function ($record, $component) {
                                if ($record && $record->termmeta->where('meta_key', "kheltag_profile_image")->first()?->meta_value) {
                                    return $component->state([$record->termmeta->where('meta_key', "kheltag_profile_image")->first()?->meta_value]);
                                }
                            }),

but while previewing i am getting this error 404 not found error
Was this page helpful?