Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Segments - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
silvergrund committed Feb 28, 2020
1 parent 771998d commit 0c1f2a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Component/Segment/segment.blade.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!-- segment.blade.php -->
<section id="{{ $id }}" class="{{ $class }}" {!! $attribute !!}>
@if (!empty($top) || !empty($title) || !empty($sub_title))
@include('segment.sub.top')
@include('Segment.sub.top')
@endif

@if (!empty($slot) || !empty($main) || !empty($text))
@include('segment.sub.main')
@include('Segment.sub.main')
@endif

@if (!empty($bottom))
@include('segment.sub.bottom')
@include('Segment.sub.bottom')
@endif
</section>

0 comments on commit 0c1f2a2

Please sign in to comment.