19 lines
917 B
PHP
19 lines
917 B
PHP
@if(!empty($statistics))
|
|
<section class="modern-stats">
|
|
<div class="modern-section__header" style="margin-bottom:2.5rem;">
|
|
<h2 class="modern-section__title" style="color:#fff;">{{ $statistics['tagline'] ?? '' }}</h2>
|
|
<p class="modern-section__desc" style="color:rgba(255,255,255,.7);">{{ $statistics['description'] ?? '' }}</p>
|
|
</div>
|
|
@if(isset($statistics['content']) && !empty($statistics['content']))
|
|
<div class="modern-stats__grid">
|
|
@foreach($statistics['content'] as $stats)
|
|
<div class="modern-stat-item">
|
|
<span class="modern-stat-item__number">{{ $stats['stats'] ?? '' }}</span>
|
|
<span class="modern-stat-item__label">{{ $stats['title'] ?? '' }}</span>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
</section>
|
|
@endif
|