Inital Commit
This commit is contained in:
@ -0,0 +1,36 @@
|
||||
<br>
|
||||
<br>
|
||||
<div class="fh-section-title clearfix text-center version-dark paddbtm40">
|
||||
<h2>Our Franchise<span class="main-color"> Company</span></h2>
|
||||
</div>
|
||||
<!-- Services sec -->
|
||||
<div class="homeserv1 secpadd2">
|
||||
<div class="container">
|
||||
<div class="fh-service style-flat">
|
||||
<div class="service-list row">
|
||||
@forelse ($franchises as $franchise)
|
||||
<div class="item-service col-xs-12 col-sm-6 col-md-3">
|
||||
<div class="service-content">
|
||||
<div class="entry-thumbnail">
|
||||
<a class="link"
|
||||
href="{{ route('showFranchise',$franchise->alias) }}"></a>
|
||||
<a href="{{ route('showFranchise',$franchise->alias) }}"><span
|
||||
class="icon"><i class="fa fa-long-arrow-right"
|
||||
aria-hidden="true"></i></span></a>
|
||||
<img src="{{ asset($franchise->thumb) }}" style="width: 100%; height:180px; object-fit:cover; object-position:center;" alt="{{ $franchise->title }}">
|
||||
</div>
|
||||
<div class="summary">
|
||||
<h2 class="entry-title"><a
|
||||
href="{{ route('showFranchise',$franchise->alias) }}">{{ $franchise->title }}</a>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@empty
|
||||
@endforelse
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Services sec end-->
|
@ -0,0 +1,29 @@
|
||||
<!--news -->
|
||||
<section class="testmonial-1 secpadd">
|
||||
<div class="container">
|
||||
<div class="fh-section-title clearfix text-left version-dark paddbtm40">
|
||||
<h2>Latest News</h2>
|
||||
</div>
|
||||
<div class="fh-latest-post carousel">
|
||||
<div class="post-list news-slide">
|
||||
@forelse ($news as $item)
|
||||
<div class="item-latest-post clearfix">
|
||||
<div class="entry-thumbnail">
|
||||
<a href="{{ route('news', $item->alias) }}">
|
||||
<img style="height: 205px; width:100%; object-fit:cover; object-position:center;" src="{{ asset($item->image) }}" alt="{{$item->title}}" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="entry-summary">
|
||||
<h2 class="entry-title">{{ Str::limit($item->title,45) }}</h2>
|
||||
<div class="entry-footer">
|
||||
<a href="{{ route('news', $item->alias) }}">Read More...</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@empty
|
||||
@endforelse
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--news ends -->
|
@ -0,0 +1,33 @@
|
||||
<section class="three_steps secpadd graybg">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="fh-section-titles4321`5432. clearfix f30 text-center version-dark margbtm40">
|
||||
<h2>Our Partners</h2>
|
||||
</div>
|
||||
<!-- First Card -->
|
||||
@foreach ($partners as $partner)
|
||||
@php
|
||||
$images = explode(',',$partner->thumb);
|
||||
@endphp
|
||||
|
||||
<div class="col-sm-4 col-xs-12">
|
||||
<div class="card1">
|
||||
<div class="card1-body">
|
||||
<h4 class="box-title1">{{ $partner->title }}</h4>
|
||||
<div class="fh-icon-box1 style-2 version-dark icon-center service-process">
|
||||
@foreach ($images as $image)
|
||||
<img src="{{ asset($image) }}" alt="{{$partner->title}}">
|
||||
|
||||
@break($loop->index == 2)
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<br>
|
||||
<br>
|
@ -0,0 +1,35 @@
|
||||
<section class="features-1 bluebg">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-sm-12">
|
||||
<div class="fh-section-title clearfix text-left version-light">
|
||||
<h2>Our Special Services</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row">
|
||||
<?php $count = 0; ?>
|
||||
@foreach ($services as $key => $service)
|
||||
@if ($count % 2 == 0)
|
||||
@if ($count > 0)
|
||||
</div><!-- Close previous col-md-4 col-sm-12 -->
|
||||
@endif
|
||||
<div class="col-md-4 col-sm-12">
|
||||
@endif
|
||||
<div class="fh-service-box icon-type-theme_icon style-1">
|
||||
<span class="fh-icon"><i class="{{$service->icon}}"></i></span>
|
||||
<h4 class="service-title"><a href="road-freight-forwarding.php" class="link" target="_blank">{{ $service->title }}</a></h4>
|
||||
<div class="desc">
|
||||
<p>{!! strip_tags($service->sub_text) !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
<?php $count++; ?>
|
||||
@endforeach
|
||||
@if ($count % 2 != 0)
|
||||
</div><!-- Close last col-md-4 col-sm-12 if there is an odd number of services -->
|
||||
@endif
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
@ -0,0 +1,146 @@
|
||||
<!--Main Slider-->
|
||||
<section class="rev_slider_wrapper">
|
||||
<div id="slider1" class="rev_slider" data-version="5.0">
|
||||
|
||||
<ul>
|
||||
<!-- SLIDE -->
|
||||
@foreach ($sliders as $index => $slider)
|
||||
<li data-index="rs-{{ $index }}" data-transition="fade" data-slotamount="default"
|
||||
data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default"
|
||||
data-easeout="default" data-masterspeed="300" data-rotate="0" data-saveperformance="off"
|
||||
data-title="Slide" data-param1="" data-param2="" data-param3="" data-param4=""
|
||||
data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10=""
|
||||
data-description="">
|
||||
<!-- MAIN IMAGE -->
|
||||
<img src="{{ asset($slider->thumb) }}" alt="" title="Home Page 1"
|
||||
data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat"
|
||||
data-bgparallax="0" class="rev-slidebg" data-no-retina>
|
||||
<!-- LAYERS -->
|
||||
|
||||
<!-- LAYER NR. 1 -->
|
||||
<div class="tp-caption tp-resizeme" id="slide-1-layer-9"
|
||||
data-x="['left','left','left','left']" data-hoffset="['495','0','0','0']"
|
||||
data-y="['top','top','top','top']" data-voffset="['310','210','310','170']"
|
||||
data-width="none" data-height="none" data-whitespace="nowrap"
|
||||
data-visibility="['on','on','off','off']" data-type="image" data-responsive_offset="on"
|
||||
data-frames='[{"delay":10,"speed":300,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
|
||||
data-textAlign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]"
|
||||
data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]"
|
||||
data-paddingleft="[0,0,0,0]" style="z-index: 5;"><img
|
||||
src="{{ asset('topCargo/assets/images/main-slider/slide-bg.png') }}" alt=""
|
||||
data-ww="['674px','674px','674px','674px']"
|
||||
data-hh="['398px','398px','398px','398px']" width="674" height="398"
|
||||
data-no-retina> </div>
|
||||
|
||||
<!-- LAYER NR. 2 -->
|
||||
|
||||
<style>
|
||||
.slider-title {
|
||||
line-height: 65px !important;
|
||||
}
|
||||
|
||||
.slider-desc {
|
||||
line-height: 35px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="tp-caption ch_title text-uppercase slider-title tp-resizeme"
|
||||
id="slide-1-layer-1" data-x="['left','left','left','left']"
|
||||
data-hoffset="['540','40','40','40']" data-y="['top','top','top','top']"
|
||||
data-voffset="['350','250','350','200']" data-fontsize="['55','50','45','25']"
|
||||
data-lineheight="['55','50','45','25']" data-width="none" data-height="none"
|
||||
data-whitespace="normal" data-type="text" data-responsive_offset="on"
|
||||
data-frames='[{"delay":200,"speed":500,"text_c":"transparent","bg_c":"transparent","use_text_c":false,"use_bg_c":false,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":500,"use_text_c":false,"use_bg_c":false,"text_c":"transparent","bg_c":"transparent","frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
|
||||
data-textAlign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]"
|
||||
data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]"
|
||||
data-paddingleft="[0,0,0,0]"
|
||||
style="z-index: 6; white-space: normal; overflow:visible; width: 300%; word-wrap: break-word; letter-spacing: 0px;">
|
||||
{{ $slider->slider_title }}
|
||||
</div>
|
||||
|
||||
|
||||
<!-- LAYER NR. 4 -->
|
||||
<div class="tp-caption ch_content slider-desc tp-resizeme" id="slide-1-layer-3"
|
||||
data-x="['left','left','left','left']" data-hoffset="['540','40','40','40']"
|
||||
data-y="['top','top','top','top']" data-voffset="['505','415','515','340']"
|
||||
data-fontsize="['24','24','18','18']" data-lineheight="['24','24','18','18']"
|
||||
data-width="none" data-height="none" data-whitespace="normal" data-type="text"
|
||||
data-responsive_offset="on"
|
||||
data-frames='[{"delay":600,"speed":700,"text_c":"transparent","bg_c":"transparent","use_text_c":false,"use_bg_c":false,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":700,"use_text_c":false,"use_bg_c":false,"text_c":"transparent","bg_c":"transparent","frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
|
||||
data-textAlign="['inherit','inherit','inherit','inherit']" data-paddingtop="[0,0,0,0]"
|
||||
data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]"
|
||||
data-paddingleft="[0,0,0,0]"
|
||||
style="z-index: 8; white-space: normal; width: 400%; letter-spacing: 0px;">
|
||||
{{ $slider->slider_desc }}</div>
|
||||
|
||||
|
||||
|
||||
<!-- LAYER NR. 6 -->
|
||||
<a class="tp-caption ch_button rev-btn " href="{{ route('article.single', 'who-are-we') }}"
|
||||
target="_blank" id="slide-1-layer-5" data-x="['left','left','left','left']"
|
||||
data-hoffset="['540','40','40','40']" data-y="['top','top','top','top']"
|
||||
data-voffset="['600','520','620','430']" data-width="none" data-height="none"
|
||||
data-whitespace="nowrap" data-type="button" data-actions=''
|
||||
data-responsive_offset="on" data-responsive="off"
|
||||
data-frames='[{"delay":800,"speed":1000,"text_c":"transparent","bg_c":"transparent","use_text_c":false,"use_bg_c":false,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"use_text_c":false,"use_bg_c":false,"text_c":"transparent","bg_c":"transparent","frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgb(255,255,255);bg:rgb(255,0,0);bc:rgb(255,0,0);bw:1 1 1 1;"}]'
|
||||
data-textAlign="['inherit','inherit','inherit','inherit']"
|
||||
data-paddingtop="[12,12,12,12]" data-paddingright="[35,35,35,35]"
|
||||
data-paddingbottom="[12,12,12,12]" data-paddingleft="[35,35,35,35]"
|
||||
style="z-index: 10; white-space: nowrap; letter-spacing: px;background-color:rgba(0, 0, 0, 0);border-color:rgb(255,255,255);outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;text-decoration: none;">About
|
||||
us </a>
|
||||
|
||||
<!-- LAYER NR. 7 -->
|
||||
<a class="tp-caption ch_button rev-btn " href="{{ route('quote') }}" target="_blank"
|
||||
id="slide-1-layer-7" data-x="['left','left','left','left']"
|
||||
data-hoffset="['750','250','270','40']" data-y="['top','top','top','top']"
|
||||
data-voffset="['600','520','620','500']" data-width="none" data-height="none"
|
||||
data-whitespace="nowrap" data-type="button" data-actions=''
|
||||
data-responsive_offset="on" data-responsive="off"
|
||||
data-frames='[{"delay":800,"speed":1000,"text_c":"transparent","bg_c":"transparent","use_text_c":false,"use_bg_c":false,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"use_text_c":false,"use_bg_c":false,"text_c":"transparent","bg_c":"transparent","frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgb(255,255,255);bg:rgb(255,0,0);bc:rgb(255,0,0);bw:1 1 1 1;"}]'
|
||||
data-textAlign="['inherit','inherit','inherit','inherit']"
|
||||
data-paddingtop="[12,12,12,12]" data-paddingright="[35,35,35,35]"
|
||||
data-paddingbottom="[12,12,12,12]" data-paddingleft="[35,35,35,35]"
|
||||
style="z-index: 11; white-space: nowrap; letter-spacing: px;background-color:rgba(0, 0, 0, 0);border-color:rgb(255,255,255);outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;text-decoration: none;">Request
|
||||
Quote </a>
|
||||
</li>
|
||||
@endforeach
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<!--Main Slider end-->
|
||||
|
||||
<!--home counters -->
|
||||
<section class="homecounts">
|
||||
<div class="container">
|
||||
<h2 class="count-title">Top Line <span class="main-color2">Cargo </span> is a Global Supplier of
|
||||
Transport.</h2>
|
||||
<div class="row">
|
||||
<div class="col-lg-3 col-md-4 col-lg-offset-2">
|
||||
<div class="fh-counter icon-type-none">
|
||||
<div class="counter">
|
||||
<div class="value">30 years+</div>
|
||||
<h4>Experience</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-3 col-md-4">
|
||||
<div class="fh-counter icon-type-none">
|
||||
<div class="counter">
|
||||
<div class="value">Current CSA</div>
|
||||
<h4>Jaz/Fit</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-4">
|
||||
<div class="fh-counter icon-type-none">
|
||||
<div class="counter">
|
||||
<div class="value">Ex<br> CSA</div>
|
||||
<h4>Salam Air</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
@ -0,0 +1,30 @@
|
||||
<!--testimonials -->
|
||||
<section class="testmonial-1">
|
||||
<div class="fh-testimonials-carousel fh-testimonials column-1">
|
||||
<div class="testi-list single-slide">
|
||||
@forelse ($testimonials as $item)
|
||||
<div class="testi-wrapper" style="background-image:url({{ asset($item->thumb) }})">
|
||||
<div class="container">
|
||||
<div class="testi-item">
|
||||
<span class="testi-icon"><i class="flaticon-quotations"></i></span>
|
||||
<div class="testi-content">
|
||||
<div class="testi-star">
|
||||
<i class="fa fa-star fa-md"></i>
|
||||
<i class="fa fa-star fa-md"></i><i class="fa fa-star fa-md"></i>
|
||||
<i class="fa fa-star fa-md"></i><i class="fa fa-star fa-md"></i>
|
||||
</div>
|
||||
<div class="testi-des">{!! $item->text !!}</div>
|
||||
<div class="info clearfix">
|
||||
<span class="testi-name">{{ $item->title }}</span>
|
||||
<span class="testi-job">{{ $item->designation }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@empty
|
||||
@endforelse
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--testimonilas-->
|
@ -0,0 +1,43 @@
|
||||
<!--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)
|
||||
@if($item->status != -1)
|
||||
<div class="fh-icon-box style-2 icon-left has-line">
|
||||
<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>
|
||||
|
||||
@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
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-lg-5 col-lg-offset-2 col-md-6 quofrm1 secpaddlf">
|
||||
<img src = "{{ asset($whyChooseUs->cover_photo) }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--why choose us end -->
|
Reference in New Issue
Block a user