I may be way off here - but do you have your eloquent relationships configured in your models? If so, perhaps you could access them that way?
I'm not familiar with your system but say a user has many timesheet entries...
// USER MODEL - Eloquent Relationship
public function TimeSheetEntries()
{
return $this->hasMany(TimesheetEntry::class);
}
Then you could access
$user = User::find(2); // The user you wish to display
$user->TimeSheetEntries; // would return a collection of timesheet entries for that user
Like I said, maybe I'm way off