supr4yz- https://laravel.com/docs/9.x/eloquent-relationships
Post modeline
public function heroImage(): HasOne
{
return $this->hasOne(Attachment::class, 'hero');
}
$posts = Post::with('heroImage')->get();
@foreach($posts as $post)
@if($post->heroImage)
<img src="{{ Storage::url($post->heroImage->path) }}" alt="image"></div>
@endif
@endforeach