you can set url on the storage configuration if not already set.
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],
then in your view, the path is obtained as
<img src="{{ Storage::disk('public')->url($path)}}" />
disk() is optional as public will be the default. I sometimes store the disk name in the database as well as the path so that I can migrate images between disks.
<img src="{{ Storage::disk($category->image_disk)->url($category->image}}" />
In your database store the path as relative to the root of the public storage disk.