There are two tables users and posts
There is a user_id column in user_id
How to get all the information about users by user_id and that it would be tied to your posts
Ie the code is as follows:
@foreach($posts as $post) <div class="content" data-postid="{{ $post->id }}"> <header>{{ $post->title }}</header> <div class="body">{{ $post->body }}</div> <div class="info"> Дата: {{ $post->created_at->format('dm-Y') }} *инфа о пользователе* </div> </div> @endforeach