Inital Commit
This commit is contained in:
33
resources/views/client/target/inside/article.blade.php
Normal file
33
resources/views/client/target/inside/article.blade.php
Normal file
@@ -0,0 +1,33 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>{{ $article->title }} - {{ 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="medium-text text-light">{{ $article->title }}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="chairman pt-5 custom-background">
|
||||
<div class="container">
|
||||
|
||||
<p class="custom-text text-dark fs-5 text-uppercase"
|
||||
uk-scrollspy="cls: uk-animation-slide-left-medium; repeat: true">{{ $article->title }} </p>
|
||||
|
||||
<div class="row g-5">
|
||||
|
||||
<div class="col-md-6">
|
||||
{!! processForShortcode($article->text) !!}
|
||||
|
||||
</div>
|
||||
<div class="col-lg-6 spacing-lg">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="{{site_url($article->cover_photo)}}" alt="">
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
42
resources/views/client/target/inside/certificates.blade.php
Normal file
42
resources/views/client/target/inside/certificates.blade.php
Normal file
@@ -0,0 +1,42 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>License & Permits - {{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">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
|
||||
<p class="text-light">Home / License and Certificates</p>
|
||||
<p class="medium-text text-light">License & Certificates</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="license section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">Licenses and Certificates</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getCertificates() as $Certificate)
|
||||
<div class="col-md-3 demandimg border">
|
||||
<a href="{{site_url($Certificate->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid" src="{{site_url($Certificate->thumb)}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$Certificate->title}}</p>
|
||||
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
70
resources/views/client/target/inside/contact.blade.php
Normal file
70
resources/views/client/target/inside/contact.blade.php
Normal file
@@ -0,0 +1,70 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>Contact - {{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">
|
||||
<div class="square" style="left:0%; z-index:0; "></div>
|
||||
<p class="text-light">Home / Contact</p>
|
||||
<p class="medium-text text-light">Contact Us</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section-padding ">
|
||||
<div class="container">
|
||||
<div class="row g-5 d-flex align-items-center">
|
||||
|
||||
<div class="col-md-6 contact-details">
|
||||
<p>
|
||||
|
||||
Find us in these locations and contact us directly for any additional queries.
|
||||
</p>
|
||||
<div class="vstack gap-4 get-in-touch">
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-location-arrow"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Location</p>
|
||||
<p class="m-0 mt-2 fw-bold">{{$contact->address}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-envelope"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Mail</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark no-underline" href="mailto:{{$contact->email1}}">{{$contact->email1}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-phone"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Phone</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark no-underline" href="tel:{{$contact->tel}}">{{$contact->tel}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<p class="custom-text fs-5 text-uppercase">Contact Form</p>
|
||||
{{MPCMS::showForm($contact->forms_id)}}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section> {!!$contact->google_map!!}
|
||||
|
||||
|
||||
@endsection
|
@@ -0,0 +1,28 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$country->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container">
|
||||
<p class="medium-text text-light">{{$country->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pt-5 custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 pb-5">
|
||||
<p class="fs-4 fw-bold text-center green-bg text-light p-2">{{$country->title}}</p>
|
||||
<div class="col-md-3">
|
||||
<img class="img-fluid rounded" src="{{site_url($country->image_thumb)}}" alt="">
|
||||
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<p> {!!processForShortcode($country->details)!!} </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
@@ -0,0 +1,41 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>Demand Countries - {{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">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Demand Countries</p>
|
||||
<p class="medium-text text-light">Countries on Demand</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 text-dark">List of Countries in Demand</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
|
||||
@foreach(MPCMS::getDemandCountries() as $country)
|
||||
<div class="col-md-4">
|
||||
|
||||
<a href="country/{{$country->alias}}">
|
||||
<img class="img-fluid custom-img-job" src="{{$country->image_thumb}}" alt="flag">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$country->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
32
resources/views/client/target/inside/demand_single.blade.php
Normal file
32
resources/views/client/target/inside/demand_single.blade.php
Normal file
@@ -0,0 +1,32 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$demand->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container">
|
||||
<p class="medium-text text-light">{{$demand->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pt-5 custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 pb-5">
|
||||
<div class="col-9">
|
||||
<p class="fs-4 fw-bold text-center green-bg text-light p-2">{{$demand->title}}</p>
|
||||
|
||||
<img class="img-fluid rounded" src="{{site_url($demand->thumb)}}" alt="">
|
||||
{!!$demand->text!!}
|
||||
<p class="medium-text">Apply Now</p>
|
||||
{{MPCMS::showForm('apply-now')}}
|
||||
</div>
|
||||
<div class="col-3">
|
||||
@include("client.target.inside.sidebar")
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
38
resources/views/client/target/inside/demands.blade.php
Normal file
38
resources/views/client/target/inside/demands.blade.php
Normal file
@@ -0,0 +1,38 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>Demand Countries - {{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">
|
||||
<div class="square" style="left:0%; z-index:2;">
|
||||
<h1>Current Job Demands</h1></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients1 section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">List of current Job Demands</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="col-md-3 demandimg">
|
||||
<a href="{{site_url($JobDemand->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid" src="{{site_url($JobDemand->thumb)}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3 custom">{{$JobDemand->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
@@ -0,0 +1,37 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>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">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Clients</p>
|
||||
<p class="medium-text text-light">Our Clients</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients partners section-padding custom-color position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4"><i class="fa-solid fa-minus me-2 custom-icon"></i>Our Clients</p>
|
||||
<div class="vstack gap-3 pt-3">
|
||||
<div class="row g-3 text-center">
|
||||
@foreach(MPCMS::getCompanies() as $client)
|
||||
<div class="col-md-3">
|
||||
<a href="{{site_url($client->logo)}}" data-fancybox="galleryc1">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($client->logo)}}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
@@ -0,0 +1,48 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>Job Categories - {{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">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Job Categories</p>
|
||||
<p class="medium-text text-light">Job Categories</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="job-category section-padding custom-background">
|
||||
<div class="container vstack gap-3">
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
|
||||
@foreach(MPCMS::getjobcategories() as $category)
|
||||
<div class="col-md-4">
|
||||
<div class="graphics-card p-2 position-relative">
|
||||
<div>
|
||||
<div class="uk-inline-clip uk-transition-toggle" tabindex="0">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($category->thumb)}}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contents-card ">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<p class="custom-text text-danger fs-5">{{$category->title}}</p>
|
||||
</a>
|
||||
<p class="">
|
||||
{!!substr($category->details,0,120).'...'!!}
|
||||
</p>
|
||||
<a class="learn-more no-underline" href="{{ route('single_job_category', ['alias' => $category->alias]) }}">Learn More <i class="fa-solid fa-arrow-right ms-2"></i></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
@endsection
|
44
resources/views/client/target/inside/job-demands.blade.php
Normal file
44
resources/views/client/target/inside/job-demands.blade.php
Normal file
@@ -0,0 +1,44 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>Demand Countries - {{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">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
|
||||
<p class="medium-text text-light">Job Demand</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients1 section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 text-dark">List of current Job Demands</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="col-md-3 demandimg">
|
||||
<a href="{{site_url($JobDemand->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid rounded" src="{{site_url($JobDemand->thumb)}}" alt="">
|
||||
</a>
|
||||
<a href="{{site_url($JobDemand->thumb)}}" data-fancybox="gallery1" class="no-underline">
|
||||
<p class="mt-3">{{$JobDemand->title}}</p>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
@@ -0,0 +1,36 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$job_category->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container">
|
||||
<p class="medium-text text-light">{{$job_category->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pt-5 custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 pb-5">
|
||||
<div class="col-6">
|
||||
|
||||
<div class="col-md-12">
|
||||
<img class="img-fluid rounded" src="{{site_url($job_category->thumb)}}" alt="">
|
||||
</div>
|
||||
<p class="fs-4 fw-bold text-center green-bg text-light p-2">{{$job_category->title}}</p>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="col-md-12">
|
||||
|
||||
<p> {!!$job_category->details!!} </p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
21
resources/views/client/target/inside/sidebar.blade.php
Normal file
21
resources/views/client/target/inside/sidebar.blade.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<div class="card mb-5">
|
||||
<div class="card-header">Demand Countries</div>
|
||||
<div class="card-body">
|
||||
<div class="vstack gap-2">
|
||||
<?php foreach(MPCMS::getDemandCountries() as $country): ?>
|
||||
<a href="{{route('single_country',$country->alias)}}"><i class="fa-solid fa-angle-right me-2"></i>{{$country->title}}</a>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card mb-5">
|
||||
<div class="card-header">Latest Job Demands</div>
|
||||
<div class="card-body">
|
||||
<div class="vstack gap-2">
|
||||
<?php foreach(MPCMS::getPaperDemands()->take(20) as $PaperDemand): ?>
|
||||
|
||||
<a href="{{route('single_paper_demand',$PaperDemand->alias)}}"><i class="fa-solid fa-angle-right me-2"></i>{{$PaperDemand->title}}</a>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
39
resources/views/client/target/inside/teams.blade.php
Normal file
39
resources/views/client/target/inside/teams.blade.php
Normal file
@@ -0,0 +1,39 @@
|
||||
@extends('client.target.partials.layout')
|
||||
@section('header')
|
||||
<title>Our Team - {{ 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">
|
||||
<div class="square" style="left: 0%; z-index: 2;"></div>
|
||||
<p class="text-light">Home / Our Team</p>
|
||||
<p class="medium-text text-light">Our Team</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="job-category section-padding custom-background">
|
||||
<div class="container vstack gap-3">
|
||||
<p class="fs-4 custom-text">List of Team Members</p>
|
||||
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
@foreach (MPCMS::getTeams() as $Team)
|
||||
<div class="col-md-4">
|
||||
<div class="graphics-card p-2">
|
||||
<div class="uk-inline-clip uk-transition-toggle" tabindex="0">
|
||||
<a href="{{ site_url($Team->thumb) }}" data-fancybox="gallery1">
|
||||
<img class="uk-transition-scale-up uk-transition-opaque"
|
||||
src="{{ site_url($Team->thumb) }}" width="1800" height="1200" alt="Team Member Image">
|
||||
</a>
|
||||
</div>
|
||||
<div class="mt-3 text-center">
|
||||
<p class="custom-text2 mt-3 fw-bold">{{ $Team->title }}</p>
|
||||
<p>{{ $Team->designation }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
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