Skip to content

Commit 89a2b3a

Browse files
committed
Code style fixed
1 parent 9b17c86 commit 89a2b3a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

resources/views/public/_list-item.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<img class="project-list-item-image" src="{{ $project->present()->image(800, 600) }}" width="400" height="300" alt="{{ $project->image?->alt_attribute }}" />
44
<div class="project-list-item-info">
55
<div class="project-list-item-title">{{ $project->title }}</div>
6-
@if(!empty($project->summary))
6+
@if (!empty($project->summary))
77
<div class="project-list-item-summary">{{ $project->summary }}</div>
88
@endif
99

resources/views/public/show.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@
3030
</div>
3131
</header>
3232
<div class="project-body">
33-
@if(!empty($model->summary))
33+
@if (!empty($model->summary))
3434
<p class="project-summary">{!! nl2br($model->summary) !!}</p>
3535
@endif
3636

37-
@if(!empty($model->image))
37+
@if (!empty($model->image))
3838
<figure class="project-picture">
3939
<img class="project-picture-image" src="{{ $model->present()->image(2000, 1000) }}" width="{{ $model->image->width }}" height="{{ $model->image->height }}" alt="" />
40-
@if(!empty($model->image->description))
40+
@if (!empty($model->image->description))
4141
<figcaption class="project-picture-legend">{{ $model->image->description }}</figcaption>
4242
@endif
4343
</figure>
4444
@endif
4545

46-
@if(!empty($model->body))
46+
@if (!empty($model->body))
4747
<div class="rich-content">{!! $model->present()->body !!}</div>
4848
@endif
4949

0 commit comments

Comments
 (0)