12 lines
289 B
PHP
12 lines
289 B
PHP
@foreach ($content as $key => $obj)
|
|
|
|
<?php if(array_key_exists($key,$content_image)) {?>
|
|
<div class="col-md-8 text-center">
|
|
<img src="<?php echo asset($content_image[$key])?>" width="500" height="400">
|
|
</div><br>
|
|
<?php } ?>
|
|
<div class="cb-content">{!! $obj !!}</div>
|
|
@endforeach
|
|
|
|
|