@php
$banner_args = [
'image_url' => $history->banner_desktop,
'tablet_image' => $history->banner_tablet,
'mobile_image_url' => $history->banner_mobile,
'alt' => !empty($history->text) ? $history->text : '',
'title' => !empty($history->title) ? $history->title : '',
'tag' => !empty($history->text) ? $history->text : '',
]
@endphp
@include('site._includes.mini-banner', $banner_args)
{!! $history->content ?? '' !!}
@if($history->select_type_video != 'none')
@if($history->select_type_video == 'file')
@php
$video = $history->file_video
@endphp
@else
@php
$video = $history->link_video
@endphp
@endif

image_video}") ?? '' }}" alt="{{ $history->title ?? '' }}">
{!! $history->text_video !!}
@endif

image}") ?? ""}}" alt="{{$history->title}}">
{!! $history->content_image ?? '' !!}
@include('site._includes.blog-slider-items', ['morePosts' => $posts, 'blogTitle' => $blogTitle])
@endsection