Inital Commit
This commit is contained in:
48
resources/views/client/target/inside/testimonial.blade.php
Normal file
48
resources/views/client/target/inside/testimonial.blade.php
Normal file
@ -0,0 +1,48 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>Testimonials from Satisfied Clients - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<p class="text-light">Home / Testimonials from Satisfied Clients</p>
|
||||
<p class="medium-text text-light">Testimonials from Satisfied Clients</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="testimonials-page section-padding custom-background">
|
||||
<div class="container vstack gap-5">
|
||||
|
||||
@php $testimonials=MPCMS::getarticle('testimonials');
|
||||
|
||||
@endphp
|
||||
@foreach($testimonials->children as $testimonials)
|
||||
|
||||
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-md-3">
|
||||
<div>
|
||||
<div class="uk-inline-clip uk-transition-toggle" tabindex="0">
|
||||
|
||||
<img class="uk-transition-scale-up uk-transition-opaque" src="{{site_url($testimonials->cover_photo)}}" width="1800" height="1200" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<p class="">{!!$testimonials->text!!}</p>
|
||||
<p class="fw-bold custom-text">{{$testimonials->title}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
@endforeach
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
@endsection
|
Reference in New Issue
Block a user