TanchoToplineCargo/resources/views/client/topCargo/partials/welcome/why-choose-us.blade.php

48 lines
2.2 KiB
PHP
Raw Normal View History

2024-05-05 04:47:49 +00:00
<!--why choose us -->
<section class="whychoose-1">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-6 secpaddlf">
<div class="fh-section-title clearfix text-left version-dark paddbtm40">
<h2>{{ $whyChooseUs->title }}?</h2>
</div>
@foreach ($whyChooseUs->children as $item)
2024-05-08 08:17:40 +00:00
@if ($item->status != -1)
@if ($loop->last)
<div class="fh-icon-box style-2 icon-left">
@else
<div class="fh-icon-box style-2 icon-left has-line">
@endif
2024-05-05 04:47:49 +00:00
<span class="fh-icon"><a href="javascript:void(0)"><i
2024-05-08 08:17:40 +00:00
class="{{ $item->icon }}"></i></a></span>
2024-05-05 04:47:49 +00:00
<h4 class="box-title"><a href="javascript:void(0)"> <span>{{ $item->title }}</span></a>
</h4>
<div class="desc">
{!! strip_tags($item->text) !!}
</div>
2024-05-08 08:17:40 +00:00
</div>
2024-05-05 04:47:49 +00:00
2024-05-08 08:17:40 +00:00
{{-- @if ($loop->last)
<div class="fh-icon-box style-2 icon-left">
<span class="fh-icon"><a href="javascript:void(0)"><i
class="{{ $item->icon }}"></i></a></span>
<h4 class="box-title"><a href="javascript:void(0)"><span>{{ $item->title }}</span></a>
</h4>
<div class="desc">
{!! strip_tags($item->text) !!}
</div>
</div>
@endif --}}
@endif
@endforeach
2024-05-05 04:47:49 +00:00
2024-05-08 08:17:40 +00:00
</div>
2024-05-05 04:47:49 +00:00
2024-05-08 08:17:40 +00:00
<div class="col-lg-5 col-lg-offset-2 col-md-6 quofrm1 secpaddlf">
<img src = "{{ asset($whyChooseUs->cover_photo) }}">
2024-05-05 04:47:49 +00:00
</div>
</div>
2024-05-08 08:17:40 +00:00
</div>
2024-05-05 04:47:49 +00:00
</section>
<!--why choose us end -->