Inital Commit
This commit is contained in:
51
resources/views/client/sunsari/inside/article.blade.php
Normal file
51
resources/views/client/sunsari/inside/article.blade.php
Normal file
@ -0,0 +1,51 @@
|
||||
@section('header')
|
||||
<title>{{$article->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>{{$article->title}}</h1>
|
||||
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li class="current">{{$article->title}}</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- CONTENT START -->
|
||||
|
||||
|
||||
|
||||
<section>
|
||||
<!-- ABOUT US START -->
|
||||
<div class="container mt-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="about-us-left">
|
||||
<h5 class="overheadline">{{$article->title}}</h5>
|
||||
<p>{!!processForShortcode($article->text)!!}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 spacing-lg mb-4">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="{{site_url($article->cover_photo)}}" alt="">
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT US END -->
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
@include('client.sunsari.partials.footer')
|
53
resources/views/client/sunsari/inside/certificates.blade.php
Normal file
53
resources/views/client/sunsari/inside/certificates.blade.php
Normal file
@ -0,0 +1,53 @@
|
||||
@section('header')
|
||||
<title>Certificates - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>license</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About</li>
|
||||
<li class="current">license</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="filter-container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 mx-auto">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
@foreach(MPCMS::getCertificates() as $Certificate)
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="{{site_url($Certificate->thumb)}}">
|
||||
<div class="image-mask"></div>
|
||||
<img src="{{site_url($Certificate->thumb)}}" alt="" />
|
||||
</a>
|
||||
<p class="custom-text2 mt-3 text-center">{{$Certificate->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
<!-- GALLERY GRID END -->
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
46
resources/views/client/sunsari/inside/contact.blade.php
Normal file
46
resources/views/client/sunsari/inside/contact.blade.php
Normal file
@ -0,0 +1,46 @@
|
||||
@section('header')
|
||||
<title>Contact Us - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Contact Us</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li class="current">Contact Us</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row g-5">
|
||||
<div class="col-md-6">
|
||||
<div class="contact-left-form">
|
||||
<h2>Contact Us</h2>
|
||||
<p>Send us your message and we will be contacting you shortly.</p>
|
||||
{{MPCMS::showForm($contact->forms_id)}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 spacing-md">
|
||||
<div class="contact-right-map">
|
||||
{!!$contact->google_map!!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
46
resources/views/client/sunsari/inside/country.blade.php
Normal file
46
resources/views/client/sunsari/inside/country.blade.php
Normal file
@ -0,0 +1,46 @@
|
||||
@section('header')
|
||||
<title>Demand Countries - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Demand Countries</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Demand Countries</li>
|
||||
<li class="current">Countries</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getCountries() as $country)
|
||||
<div class="col-6 col-sm-6 col-md-3 col-lg-3 customer-column-4">
|
||||
<figure class="client-logo"><a href="{{site_url($country->cover_photo)}}"><img src="{{site_url($country->cover_photo)}}" alt=""></a></figure>
|
||||
<p class="custom-text2 mt-3 text-center" style="font-weight: bold; color: black">{{$country->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
53
resources/views/client/sunsari/inside/demands.blade.php
Normal file
53
resources/views/client/sunsari/inside/demands.blade.php
Normal file
@ -0,0 +1,53 @@
|
||||
@section('header')
|
||||
<title>Job Demands - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Job Demand</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">Demand</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="filter-container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 mx-auto">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="{{site_url($JobDemand->thumb)}}">
|
||||
<div class="image-mask"></div>
|
||||
<img src="{{site_url($JobDemand->thumb)}}" alt="" />
|
||||
</a>
|
||||
<p class="custom-text2 mt-3 text-center" style="color: black; font-weight: bold;">{{$JobDemand->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
<!-- GALLERY GRID END -->
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
45
resources/views/client/sunsari/inside/industries.blade.php
Normal file
45
resources/views/client/sunsari/inside/industries.blade.php
Normal file
@ -0,0 +1,45 @@
|
||||
@section('header')
|
||||
<title>Clients - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Clients</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Industries Served</li>
|
||||
<li class="current">Industries</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getCompanies() as $client)
|
||||
<div class="col-6 col-sm-6 col-md-3 col-lg-3 customer-column-4">
|
||||
<figure class="client-logo"><a href="{{site_url($client->logo)}}"><img src="{{site_url($client->logo)}}" alt="" height="150px" width="150px"></a></figure>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
@ -0,0 +1,62 @@
|
||||
@section('header')
|
||||
<title>Job Categories - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Job Categories</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">Job Categoriess</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- SERVICES START -->
|
||||
|
||||
<section>
|
||||
<div class="bg-wrapper">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getjobcategories() as $category)
|
||||
<div class="col-md-6 col-lg-4 mb-3">
|
||||
<div class="icon-boxes">
|
||||
<figure class="ib-icon">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($category->thumb)}}" alt="">
|
||||
</a>
|
||||
</figure>
|
||||
<h4> <a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<p class="custom-text fs-5">{{$category->title}}</p>
|
||||
</a>
|
||||
</h4>
|
||||
<p class="">
|
||||
{!!substr($category->details,0,120)!!}
|
||||
</p>
|
||||
<a class="learn-more" href="{{ route('single_job_category', ['alias' => $category->alias]) }}">Learn More <i></i></a>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
||||
|
@ -0,0 +1,56 @@
|
||||
@section('header')
|
||||
<title>{{$job_category->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>{{$job_category->title}}</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">{{$job_category->title}}</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<!-- ABOUT START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="about-us-left">
|
||||
<h5 class="overheadline">{{$job_category->title}}</h5>
|
||||
|
||||
<p> {!!$job_category->details!!} </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 spacing-lg">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="{{site_url($job_category->thumb)}}" alt="">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT END -->
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
@ -0,0 +1,84 @@
|
||||
@section('header')
|
||||
<title>Mission & Vision - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Mission & Vision</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About</li>
|
||||
<li class="current">Mission & Vision</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<!-- WIDE SECTION END -->
|
||||
<div class="tp-wide-section-about mt-5">
|
||||
<div class="row g-0">
|
||||
<div class="col-lg-5 col-xl-6">
|
||||
<div class="tp-ws-left" style="height: 450px">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-7 col-xl-6">
|
||||
<div class="tp-ws-right">
|
||||
<div class="tp-ws-right-content">
|
||||
@php
|
||||
$missions = MPCMS::getarticle('mission');
|
||||
@endphp
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="{{ site_url($missions->cover_photo) }}" alt="svg">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>{{ $missions->title }}</h4>
|
||||
<p>{!! substr($missions->text, 0, 1000) !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
@php
|
||||
$visions = MPCMS::getarticle('vision');
|
||||
@endphp
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="{{ site_url($visions->cover_photo) }}" alt="svg">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>{{ $visions->title }}</h4>
|
||||
<p>{!! substr($visions->text, 0, 1000) !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
@php
|
||||
$objectives = MPCMS::getarticle('objectives');
|
||||
@endphp
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="{{ site_url($objectives->cover_photo) }}" alt="svg">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>{{ $objectives->title }}</h4>
|
||||
<p>{!! substr($objectives->text, 0, 1000) !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- WIDE SECTION START -->
|
||||
</section>
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
50
resources/views/client/sunsari/inside/teams.blade.php
Normal file
50
resources/views/client/sunsari/inside/teams.blade.php
Normal file
@ -0,0 +1,50 @@
|
||||
@section('header')
|
||||
<title>Our Team - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Our Team </h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About</li>
|
||||
<li class="current">Our Team</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row all-team-layer">
|
||||
@foreach (MPCMS::getTeams() as $Team)
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="{{ site_url($Team->thumb) }}" alt="" height="300px">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>{{ $Team->title }}</h3>
|
||||
<p>{{ $Team->designation }}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
64
resources/views/client/sunsari/inside/testimonial.blade.php
Normal file
64
resources/views/client/sunsari/inside/testimonial.blade.php
Normal file
@ -0,0 +1,64 @@
|
||||
@section('header')
|
||||
<title>Testimonials - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Testimonials</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">Testimonials</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<div class="testimonial-banner mt-5">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="container up-testimonial-layer mb-5">
|
||||
<div class="center-title mb-3">
|
||||
<h5>THIS IS OUT INSPIRATION</h5>
|
||||
<h2>What Our Customer Says</h2>
|
||||
</div>
|
||||
<div class="testimonials-carousel">
|
||||
<div class="owl-carousel owl-theme">
|
||||
@php
|
||||
$testimonials = MPCMS::getarticle('testimonials');
|
||||
@endphp
|
||||
@foreach($testimonials->children as $testimonial)
|
||||
<div class="item">
|
||||
<div class="testimonial-box">
|
||||
<div class="testimonial-text">
|
||||
<p><i class="fas fa-quote-left"></i></p>
|
||||
<p>{!! substr($testimonial->text, 0, 1000)!!}</p>
|
||||
<div class="bottom-line"></div>
|
||||
</div>
|
||||
<figure class="author-avatar">
|
||||
<img src="{{ site_url($testimonial->cover_photo) }}" alt="">
|
||||
</figure>
|
||||
<h4>{{$testimonial->title}}</h4>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="owl-theme">
|
||||
<div class="owl-controls">
|
||||
<div class="custom-nav owl-nav"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@include('client.sunsari.partials.footer')
|
Reference in New Issue
Block a user