Skip to content

Commit 66371fe

Browse files
author
Shawn McCool
committed
Merge branch 'master' of github.com:LaravelIO/laravel-io
2 parents 694edb0 + 3ff599f commit 66371fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/users/profile.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
@if(count($threads))
1212
<div class="half">
13-
<h1>{{ Auth::user()->name }}'s Latest Threads</h1>
13+
<h1>{{ $user->name }}'s Latest Threads</h1>
1414
<div class="comments">
1515
@foreach($threads as $thread)
1616
<div class="comment">
@@ -30,7 +30,7 @@
3030

3131
@if(count($comments))
3232
<div class="half">
33-
<h1>{{ Auth::user()->name }}'s Latest Replies</h1>
33+
<h1>{{ $user->name }}'s Latest Replies</h1>
3434
<div class="comments">
3535
@foreach($comments as $comment)
3636
<div class="comment">

0 commit comments

Comments
 (0)