Skip to content

Commit cee9093

Browse files
committed
Code style fixed
1 parent 28e47b0 commit cee9093

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/resources/views/public/show.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
1818
</header>
1919
<div class="thing-body">
2020
@include('things::public._json-ld', ['thing' => $model])
21-
@if(!empty($model->summary))
21+
@if (!empty($model->summary))
2222
<p class="thing-summary">{!! nl2br($model->summary) !!}</p>
2323
@endif
2424

25-
@if(!empty($model->image))
25+
@if (!empty($model->image))
2626
<figure class="thing-picture">
2727
<img class="thing-picture-image" src="{{ $model->present()->image(2000) }}" width="{{ $model->image->width }}" height="{{ $model->image->height }}" alt="" />
28-
@if(!empty($model->image->description))
28+
@if (!empty($model->image->description))
2929
<figcaption class="thing-picture-legend">{{ $model->image->description }}</figcaption>
3030
@endif
3131
</figure>
3232
@endif
3333

34-
@if(!empty($model->body))
34+
@if (!empty($model->body))
3535
<div class="rich-content">{!! $model->present()->body !!}</div>
3636
@endif
3737

0 commit comments

Comments
 (0)