15 lines
490 B
PHP
15 lines
490 B
PHP
<!-- BEGIN BLOCKQUOTE BLOCK -->
|
|
<div class="row quote-v1 margin-bottom-30" style="background: #002090;">
|
|
@foreach ($so->block_quotes as $o)
|
|
<div class="col-md-9">
|
|
<span>{{ $o['title'] }}</span>
|
|
</div>
|
|
@if($o['image'])
|
|
<div class="col-md-3 text-right">
|
|
<a class="btn-transparent" href="#" target="_blank"><i class="fa fa-rocket margin-right-10"></i><img src="{{ $o['image'] }}" style="height: 50px;"></a>
|
|
</div>
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
<!-- END BLOCKQUOTE BLOCK -->
|