Skip to content

Commit d87bfa6

Browse files
authored
Update show.blade.php
1 parent 76a6a83 commit d87bfa6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

resources/views/forum/threads/show.blade.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
<div class="reply bg-white border rounded">
1818
<div class="flex flex-col md:flex-row md:items-center text-sm p-4 border-b">
1919
<div class="flex flex-wrap mb-4 md:mb-0 justify-between w-full items-center">
20-
2120
<div class="flex">
2221
@include('forum.threads.info.avatar', ['user' => $thread->author()])
2322

2423
<div class="mr-6 mb-4 md:mb-0 text-gray-700">
25-
<a href="{{ route('profile', $thread->author()->username()) }}" class="text-green-darker mr-2">{{ $thread->author()->name() }}</a> posted
26-
{{ $thread->createdAt()->diffForHumans() }}
24+
<a href="{{ route('profile', $thread->author()->username()) }}" class="text-green-darker mr-2">
25+
{{ $thread->author()->name() }}
26+
</a> posted {{ $thread->createdAt()->diffForHumans() }}
2727
</div>
2828
</div>
2929

@@ -34,7 +34,6 @@
3434
</a>
3535
</div>
3636
@endif
37-
3837
</div>
3938

4039
@include('forum.threads.info.tags')

0 commit comments

Comments
 (0)