@php $type = $item->get_type(); $content_style = ''; if($type == 'image' && !empty($item->get_image())){ $content_style = "background-image: url(".asset($item->get_image()).")"; } if($type == 'video' && !empty($item->get_video())){ $content_style = "background-image: url(".asset('images/video-placeholder.jpg').")"; } if(empty($content_style) || $type == 'color'){ $content_style = "background-color: ".$item->get_slide_background_color(); } $box = sprintf( '
', $content_style ); @endphp {!! $box !!}