I am trying to understand how to retrieve a record from the database which was submitted by a specific user and display that one single record. Currently, I am retrieving all submitted posts with a simple forelse loop. The idea is to display this information in Bootstraps card title view (photo below). Ultimately, as the user posts more content the view layout would look something like this https://getbootstrap.com/docs/4.0/examples/album/
As the user adds more posts I would like to retrieve them all but display each post in a single Card title as below. Can anyone help me understand this process to get this ultimately working?
@foresle loop
@forelse($posts as $post)
<p><strong>
<a href="/posts/{{ $post->id }}">{{ $post->title }}</a>
</strong></p>
@empty
<p>No Posts Currently</p>
@endforelse

{{ $post->title }}and the same for the <img> src, <a> href and so...foreach()instead?