File tree 2 files changed +58
-3
lines changed
2 files changed +58
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
.form-spacing-top {
6
6
margin-top : 30px ;
7
- }
7
+ }
8
+
9
+ .comment {
10
+ margin-bottom : 45px ;
11
+ }
12
+
13
+ .author-image {
14
+ width : 50px ;
15
+ height : 50px ;
16
+ border-radius : 50% ;
17
+ float : left;
18
+ }
19
+
20
+ .author-name {
21
+ float : left;
22
+ margin-left : 15px ;
23
+ }
24
+
25
+ .author-name > h4 {
26
+ margin : 5px 0px ;
27
+
28
+ }
29
+
30
+ .author-time {
31
+ font-size : 11px ;
32
+ font-style : italic;
33
+ color : # aaa ;
34
+ }
35
+
36
+ .comment-content {
37
+ clear : both;
38
+ margin-left : 65px ;
39
+ font-size : 16px ;
40
+ line-height : 1.3em ;
41
+ }
42
+
43
+ .comments-title {
44
+ margin-bottom : 45px ;
45
+ }
46
+
47
+ .comments-title > span {
48
+ margin-right : 15px ;
49
+ }
Original file line number Diff line number Diff line change 15
15
16
16
<div class =" row" >
17
17
<div class =" col-md-8 col-md-offset-2" >
18
+ <h3 class =" comments-title" ><span class =" glyphicon glyphicon-comment" ></span > {{ $post -> comments ()-> count () } } Comments</h3 >
18
19
@foreach ($post -> comments as $comment )
19
20
<div class =" comment" >
20
- <p ><strong >Name:</strong > {{ $comment -> name } } </p >
21
- <p ><strong >Comment:</strong ><br />{{ $comment -> comment } } </p ><br >
21
+ <div class =" author-info" >
22
+
23
+ <img src =" {{ " https://www.gravatar.com/avatar/" . md5 (strtolower (trim ($comment -> email ))) . " ?s=50&d=monsterid" } }" class =" author-image" >
24
+ <div class =" author-name" >
25
+ <h4 >{{ $comment -> name } } </h4 >
26
+ <p class =" author-time" >{{ date (' F nS, Y - g:iA' ,strtotime ($comment -> created_at )) } } </p >
27
+ </div >
28
+
29
+ </div >
30
+
31
+ <div class =" comment-content" >
32
+ {{ $comment -> comment } }
33
+ </div >
34
+
22
35
</div >
23
36
@endforeach
24
37
</div >
You can’t perform that action at this time.
0 commit comments