Merge branch 'main' of ssh://bibgit.com:22022/Bibhuti-Solutions/new_raffles into alika
This commit is contained in:
@@ -219,6 +219,86 @@
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const form = document.getElementById('franchise-form');
|
||||
const submitBtn = document.getElementById('franchise-submit');
|
||||
const url = form.action;
|
||||
form.addEventListener('submit', async (e) => {
|
||||
e.preventDefault();
|
||||
submitBtn.disabled = true;
|
||||
submitBtn.textContent = 'Submitting…';
|
||||
const formData = new FormData(form);
|
||||
try {
|
||||
const res = await fetch(url, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]')
|
||||
.content
|
||||
},
|
||||
body: formData
|
||||
});
|
||||
const data = await res.json();
|
||||
if (res.ok) {
|
||||
form.reset();
|
||||
window.location.href =
|
||||
"{{ route('thankyou') }}"; // ✅ redirect instead of toastr
|
||||
} else if (data.errors && data.errors.email) {
|
||||
data.errors.email.forEach(msg => toastr.error(msg));
|
||||
} else {
|
||||
toastr.error('Submission failed. Please try again.');
|
||||
}
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
toastr.error('Something went wrong. Please try again.');
|
||||
} finally {
|
||||
submitBtn.disabled = false;
|
||||
submitBtn.textContent = 'Submit';
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const form = document.getElementById('newsletter-form');
|
||||
const submitBtn = document.getElementById('newsletter-submit');
|
||||
const url = form.action;
|
||||
form.addEventListener('submit', async (e) => {
|
||||
e.preventDefault();
|
||||
submitBtn.disabled = true;
|
||||
submitBtn.textContent = 'Submitting…';
|
||||
const formData = new FormData(form);
|
||||
try {
|
||||
const res = await fetch(url, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]')
|
||||
.content
|
||||
},
|
||||
body: formData
|
||||
});
|
||||
const data = await res.json();
|
||||
if (res.ok) {
|
||||
form.reset();
|
||||
window.location.href =
|
||||
"{{ route('thankyou') }}"; // ✅ redirect instead of toastr
|
||||
} else if (data.errors && data.errors.email) {
|
||||
data.errors.email.forEach(msg => toastr.error(msg));
|
||||
} else {
|
||||
toastr.error('Submission failed. Please try again.');
|
||||
}
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
toastr.error('Something went wrong. Please try again.');
|
||||
} finally {
|
||||
submitBtn.disabled = false;
|
||||
submitBtn.textContent = 'Submit';
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const form = document.getElementById('counselor-form');
|
||||
|
@@ -61,10 +61,12 @@
|
||||
<a href="{{ setting('whatsapp') }}" target="blank"> <i
|
||||
class="fa-brands fa-square-whatsapp"></i></a>
|
||||
</div>
|
||||
<form class="flex" action="">
|
||||
<form action="{{ route('newsletter.store') }}" method="post" id="newsletter-form">
|
||||
@csrf
|
||||
<input class=" border-0 w-80percent px-20 text-14 py-10 text-black" type="email"
|
||||
name="email" id="email" placeholder="Enter your Email">
|
||||
<button class="border-0 text-white p-10 text-12 ">Subscribe</button>
|
||||
<button type="submit" id="newsletter-submit"
|
||||
class="border-0 text-white p-10 text-12 newsletter-submit">Subscribe</button>
|
||||
</form>
|
||||
<div>
|
||||
<iframe
|
||||
|
@@ -68,7 +68,7 @@
|
||||
@foreach ($tests as $test)
|
||||
<a href="{{ route('test.single', $test->slug) }}"
|
||||
class="service-item">
|
||||
<div class="service-icon ">
|
||||
<div class="service-icon blue-bg">
|
||||
<img src="{{ asset($test->image) }}"
|
||||
alt="">
|
||||
</div>
|
||||
|
@@ -10,7 +10,7 @@
|
||||
<section class="section ">
|
||||
<div class="flex flex-col gap-5 justify-center items-center text-center">
|
||||
<h2 class="text-60 md:text-30 text-brand">Achievements</h2>
|
||||
<img class="w-20percent" src="assets/images/icons/line.png" alt="">
|
||||
<img class="w-20percent" src="{{ asset('raffles/assets/images/icons/line.png') }}" alt="">
|
||||
|
||||
</div>
|
||||
</section>
|
||||
@@ -18,167 +18,24 @@
|
||||
<section class="lqd-section text-box-image pt-40 pb-30">
|
||||
<div class="container">
|
||||
<div class="row pb-20">
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sale </h2>
|
||||
</div>
|
||||
@foreach ($page->custom as $index => $data)
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16"
|
||||
src="{{ asset($page->images[$index]) }}" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">{{ $data['key'] ?? '' }} </h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<a href="" class="flex flex-col gap-20 p-20 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="text-20 text-ter text-center">How Successfully Used Paid Marketing to Drive
|
||||
Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
|
||||
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="flex justify-center gap-10">
|
||||
<div class="blog-pagination cursor-pointer ">
|
||||
<p class="py-5 bg-sec px-20 text-20 rounded-10 text-white button-hover">1</p>
|
||||
</div>
|
||||
<div class="blog-pagination cursor-pointer">
|
||||
<p class="py-5 bg-sec px-20 text-20 rounded-10 text-white button-hover">2</p>
|
||||
</div>
|
||||
<div class="blog-pagination cursor-pointer">
|
||||
<p class="py-5 bg-sec px-20 text-20 rounded-10 text-white button-hover">3</p>
|
||||
</div>
|
||||
<div class="blog-pagination cursor-pointer">
|
||||
<p class="py-5 bg-sec px-20 text-20 rounded-10 text-white button-hover">Next</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
@endsection
|
||||
|
@@ -11,7 +11,6 @@
|
||||
<div class="flex flex-col gap-5 justify-center items-center text-center">
|
||||
<h2 class="text-60 md:text-30 text-sec">Career Opportunities</h2>
|
||||
<div class="title-line mx-auto"></div>
|
||||
<!-- <img class="w-20percent" src="assets/images/icons/line.png" alt=""> -->
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
@@ -3,12 +3,7 @@
|
||||
<section class="career">
|
||||
<div class="p-20 ">
|
||||
<div class="h-175 rounded-10 bg-after relative">
|
||||
<img class="h-full w-full rounded-30 object-cover" src="assets/images/general/about-banner.png" alt="">
|
||||
<!-- <div
|
||||
class="flex justify-center flex-col text-center items-center w-70percent mx-auto absolute top-20percent left-15percent z-30">
|
||||
<h2 class="md:text-40 text-94 text-white">CSR</h2>
|
||||
|
||||
</div> -->
|
||||
<img class="h-full w-full rounded-30 object-cover" src="{{ asset($page->banner) }}" alt="">
|
||||
</div>
|
||||
|
||||
|
||||
@@ -29,7 +24,7 @@
|
||||
<div class="content-wrapper">
|
||||
<div class="image-section">
|
||||
<div class="image-frame">
|
||||
<img src="assets/images/general/about-banner.png" alt="" class="ceo-image">
|
||||
<img src="{{ asset($page->image) }}" alt="" class="ceo-image">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -38,58 +33,56 @@
|
||||
<div class="quote-mark">"</div>
|
||||
|
||||
|
||||
<h2 class="heading">Your Trusted Study Abroad Partner.</h2>
|
||||
<h2 class="heading">{{ $page->short_description }}</h2>
|
||||
|
||||
<p class="message">
|
||||
We’re more than just a consultancy—we’re your ultimate study abroad ally! With years of
|
||||
experience and a passion for helping students succeed, we’ve guided thousands of students to
|
||||
their dream universities across the globe. Your dreams are our mission
|
||||
{!! $page->description !!}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="row items-center">
|
||||
<div class="col col-12 col-md-6">
|
||||
<div class="flex flex-wrap mr-120 ml-40 lg:m-0">
|
||||
<div class="col col-12 col-md-6">
|
||||
<div class="flex flex-wrap mr-120 ml-40 lg:m-0">
|
||||
|
||||
<div class="mb-20 relative">
|
||||
<h2 class="ld-fh-element inline-block relative lqd-highlight-classic lqd-highlight-grow-left mt-0/5em mb-0 md:text-20 font-bold w-full"
|
||||
data-inview="true" data-transition-delay="true"
|
||||
data-delay-options='{"elements": ".lqd-highlight-inner", "delayType": "transition"}'>
|
||||
<span>Your Trusted Study Abroad
|
||||
</span>
|
||||
<mark class="lqd-highlight"><span class="lqd-highlight-txt">Partner.</span>
|
||||
<span class="left-0 bottom-10 lqd-highlight-inner"></span></mark>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="mb-20 ld-fancy-heading relative">
|
||||
<p class="leading-25 ld-fh-element inline-block relative mb-0/5em">
|
||||
We’re more than just a consultancy—we’re your ultimate study abroad ally! With years of
|
||||
experience and a passion for helping students succeed, we’ve guided thousands of
|
||||
students to their dream universities across the globe. Your dreams are our mission
|
||||
</p>
|
||||
</div>
|
||||
<div class="mb-20 relative">
|
||||
<h2 class="ld-fh-element inline-block relative lqd-highlight-classic lqd-highlight-grow-left mt-0/5em mb-0 md:text-20 font-bold w-full"
|
||||
data-inview="true" data-transition-delay="true"
|
||||
data-delay-options='{"elements": ".lqd-highlight-inner", "delayType": "transition"}'>
|
||||
<span>Your Trusted Study Abroad
|
||||
</span>
|
||||
<mark class="lqd-highlight"><span class="lqd-highlight-txt">Partner.</span>
|
||||
<span class="left-0 bottom-10 lqd-highlight-inner"></span></mark>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="mb-20 ld-fancy-heading relative">
|
||||
<p class="leading-25 ld-fh-element inline-block relative mb-0/5em">
|
||||
We’re more than just a consultancy—we’re your ultimate study abroad ally! With years of
|
||||
experience and a passion for helping students succeed, we’ve guided thousands of
|
||||
students to their dream universities across the globe. Your dreams are our mission
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col col-12 col-md-6 p-0">
|
||||
<div class="module-section flex items-center justify-center transition-all p-20 lg:p-0">
|
||||
<div class="flex items-center justify-center bg-center bg-no-repeat bg-contain" style="
|
||||
</div>
|
||||
</div>
|
||||
<div class="col col-12 col-md-6 p-0">
|
||||
<div class="module-section flex items-center justify-center transition-all p-20 lg:p-0">
|
||||
<div class="flex items-center justify-center bg-center bg-no-repeat bg-contain" style="
|
||||
background-image: url('assets/images/demo/start-hub-1/shape-ellipse.png');
|
||||
">
|
||||
<div class="lqd-imggrp-single block relative " data-float="ease-in-out">
|
||||
<div class="lqd-imggrp-img-container inline-flex relative items-center justify-center">
|
||||
<figure class="w-full relative">
|
||||
<img width="450" height="450" src="assets/images/general/about-banner.png"
|
||||
alt="text box image" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="lqd-imggrp-single block relative " data-float="ease-in-out">
|
||||
<div class="lqd-imggrp-img-container inline-flex relative items-center justify-center">
|
||||
<figure class="w-full relative">
|
||||
<img width="450" height="450" src="assets/images/general/about-banner.png"
|
||||
alt="text box image" />
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -99,8 +92,6 @@
|
||||
<section class="section ">
|
||||
<div class="container">
|
||||
<h2 class="text-60 md:text-30 text-brand text-center">Blogs</h2>
|
||||
<!-- <img class="w-20percent" src="assets/images/icons/line.png" alt=""> -->
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -108,63 +99,17 @@
|
||||
<div class="container">
|
||||
<div class="swiper mySwiper-img">
|
||||
<div class="swiper-wrapper">
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before" href="blog-detail.php"> <img class="rounded-30"
|
||||
src="assets/images/general/about-banner.png" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">How do i manage my financials?</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before" href="blog-detail.php"> <img class="rounded-30"
|
||||
src="assets/images/general/about-banner.png" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">How do i manage my financials?</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before" href="blog-detail.php"> <img class="rounded-30"
|
||||
src="assets/images/general/about-banner.png" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">How do i manage my financials?</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before" href="blog-detail.php"> <img class="rounded-30"
|
||||
src="assets/images/general/about-banner.png" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">How do i manage my financials?</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before" href="blog-detail.php"> <img class="rounded-30"
|
||||
src="assets/images/general/about-banner.png" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">How do i manage my financials?</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before" href="blog-detail.php"> <img
|
||||
class="rounded-30" src="assets/images/general/about-banner.png" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">How do i manage my financials?</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before" href="blog-detail.php"> <img
|
||||
class="rounded-30" src="assets/images/general/about-banner.png" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">How do i manage my financials?</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@foreach ($blogs as $blog)
|
||||
<div class="swiper-slide ">
|
||||
<a class="h-full w-full relative bg-dark-before"
|
||||
href="{{ route('blog.single', $blog->slug) }}"> <img class="rounded-30"
|
||||
src="{{ asset($blog->image) }}" alt="">
|
||||
<div class="absolute left-5percent bottom-20">
|
||||
<h3 class="text-white text-20">{{ $blog->title }}</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="swiper-button-prev"></div>
|
||||
<div class="swiper-button-next"></div>
|
||||
@@ -177,6 +122,7 @@
|
||||
<h2 class="text-60 md:text-30 text-brand text-center">Gallery</h2>
|
||||
<!-- <img class="w-20percent" src="assets/images/icons/line.png" alt=""> -->
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -187,24 +133,10 @@
|
||||
|
||||
<div class="swiper mySwiper-img">
|
||||
<div class="swiper-wrapper">
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="assets/images/general/about-banner.png"
|
||||
alt=""></div>
|
||||
@foreach ($galleriesCSR->images as $gallery)
|
||||
<div class="swiper-slide"> <img class="rounded-10" src="{{ asset($gallery) }}" alt="">
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="swiper-button-prev"></div>
|
||||
<div class="swiper-button-next"></div>
|
||||
|
@@ -1,8 +1,7 @@
|
||||
@extends('client.raffles.layouts.app')
|
||||
@section('content')
|
||||
<div class="services-banner">
|
||||
<img src="{{ asset('raffles/assets/assets/images/backgrounds_general/events-banner.png') }}" width="1425"
|
||||
height="356" alt="events ">
|
||||
<img src="{{ asset($page->banner) }}" width="1425" height="356" alt="events ">
|
||||
|
||||
</div>
|
||||
<section class="section ">
|
||||
@@ -18,116 +17,30 @@
|
||||
<h2 class="ld-fh-element inline-block relative mt-10 mb-0 section-heading-sec">
|
||||
Upcoming Events
|
||||
</h2>
|
||||
<!-- <div class="flex gap-10 mt-10">
|
||||
<select name="" id="weekdays">
|
||||
<option value="" selected hidden>select category</option>
|
||||
<option value=""></option>
|
||||
</select>
|
||||
<select name="" id="eventType">
|
||||
<option value="" selected hidden>select category</option>
|
||||
<option value=""></option>
|
||||
</select>
|
||||
</div> -->
|
||||
|
||||
</div>
|
||||
|
||||
<div class="swiper swiper-events mt-40 mb-40">
|
||||
<div class="swiper-wrapper">
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
@foreach ($upcomingEvents as $event)
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="{{ asset($event->image) }}" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Start</h4>
|
||||
<h4 class="text-18 font-bold text-black">{{ $event->start_date }}</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">{{ $event->title }}</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">{{ $event->short_description }} </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
</a>
|
||||
@endforeach
|
||||
</div>
|
||||
<!-- Pagination -->
|
||||
<!-- <div class="swiper-pagination"></div> -->
|
||||
@@ -148,102 +61,27 @@
|
||||
|
||||
<div class="swiper swiper-events mt-40">
|
||||
<div class="swiper-wrapper">
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
@foreach ($previousEvents as $event)
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="{{ asset($event->image) }}" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Start</h4>
|
||||
<h4 class="text-18 font-bold text-black">{{ $event->start_date }}</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">{{ $event->title }}</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">{{ $event->short_description }} </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
</a>
|
||||
@endforeach
|
||||
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide">
|
||||
<div class="event-block relative w-full">
|
||||
<div class="w-full rounded-30">
|
||||
<img src="assets/images/general/event1.jfif" alt="">
|
||||
</div>
|
||||
<div class="flex items-center gap-20 py-20 px-20 bg-white rounded-30">
|
||||
<div>
|
||||
<h4 class="text-16 text-ter">Apr</h4>
|
||||
<h4 class="text-18 font-bold text-black">14</h4>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-16 text-black">Free ilets Class: Raffles Educare Associates</h3>
|
||||
<p class="text-14 p-0 m-0 text-grey">Join the free ilets Classes </p>
|
||||
<p class="text-14 text-grey">Starting from 5 pm - 7 pm </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<!-- Pagination -->
|
||||
<!-- <div class="swiper-pagination"></div> -->
|
||||
@@ -259,109 +97,31 @@
|
||||
<h2 class="ld-fh-element inline-block relative mt-10 mb-0 section-heading-sec">
|
||||
Blog
|
||||
</h2>
|
||||
<p class="text-18 text-center">Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate, assumenda.
|
||||
<p class="text-18 text-center">Our blog
|
||||
features articles written by experts in the field, providing valuable information to help you achieve
|
||||
your goals.</p>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="swiper swiper-events mt-40 mb-20">
|
||||
<div class="swiper-wrapper">
|
||||
<a href="" class="swiper-slide flex flex-col gap-20 p-10 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<span class="bg-gray text-sec rounded-30 text-10 py-5 px-10 mt-10">20 min read</span>
|
||||
<h2 class="text-20 text-ter pt-10">How Successfully Used Paid Marketing to Drive Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
<div class="flex flex-col gap-10">
|
||||
<p class="text-14 text-black">Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
Inventore reprehenderit, dolor ad quis dignissimos aliquid nesciunt distinctio suscipit
|
||||
ipsam voluptatum.</p>
|
||||
<p class="text-12">12 Mar - Jhon Doe</p>
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
|
||||
<a href="" class="swiper-slide flex flex-col gap-20 p-10 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<span class="bg-gray text-sec rounded-30 text-10 py-5 px-10 mt-10">20 min read</span>
|
||||
<h2 class="text-20 text-ter pt-10">How Successfully Used Paid Marketing to Drive Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
<div class="flex flex-col gap-10">
|
||||
<p class="text-14 text-black">Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
Inventore reprehenderit, dolor ad quis dignissimos aliquid nesciunt distinctio suscipit
|
||||
ipsam voluptatum.</p>
|
||||
<p class="text-12">12 Mar - Jhon Doe</p>
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide flex flex-col gap-20 p-10 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<span class="bg-gray text-sec rounded-30 text-10 py-5 px-10 mt-10">20 min read</span>
|
||||
<h2 class="text-20 text-ter pt-10">How Successfully Used Paid Marketing to Drive Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
<div class="flex flex-col gap-10">
|
||||
<p class="text-14 text-black">Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
Inventore reprehenderit, dolor ad quis dignissimos aliquid nesciunt distinctio suscipit
|
||||
ipsam voluptatum.</p>
|
||||
<p class="text-12">12 Mar - Jhon Doe</p>
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide flex flex-col gap-20 p-10 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<span class="bg-gray text-sec rounded-30 text-10 py-5 px-10 mt-10">20 min read</span>
|
||||
<h2 class="text-20 text-ter pt-10">How Successfully Used Paid Marketing to Drive Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
<div class="flex flex-col gap-10">
|
||||
<p class="text-14 text-black">Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
Inventore reprehenderit, dolor ad quis dignissimos aliquid nesciunt distinctio suscipit
|
||||
ipsam voluptatum.</p>
|
||||
<p class="text-12">12 Mar - Jhon Doe</p>
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
<a href="" class="swiper-slide flex flex-col gap-20 p-10 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="assets/images/general/blog1.jfif"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<span class="bg-gray text-sec rounded-30 text-10 py-5 px-10 mt-10">20 min read</span>
|
||||
<h2 class="text-20 text-ter pt-10">How Successfully Used Paid Marketing to Drive Incremental
|
||||
Ticket Sales</h2>
|
||||
</div>
|
||||
<div class="flex flex-col gap-10">
|
||||
<p class="text-14 text-black">Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
Inventore reprehenderit, dolor ad quis dignissimos aliquid nesciunt distinctio suscipit
|
||||
ipsam voluptatum.</p>
|
||||
<p class="text-12">12 Mar - Jhon Doe</p>
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
@foreach ($blogs as $blog)
|
||||
<a href="{{ route('blog.single', $blog->slug) }}"
|
||||
class="swiper-slide flex flex-col gap-20 p-10 blog-post">
|
||||
<div class="w-100percent h-210 overflow-hidden rounded-16">
|
||||
<img class="w-full h-full object-cover rounded-16" src="{{ asset($blog->image) }}"
|
||||
alt="">
|
||||
</div>
|
||||
<div>
|
||||
<span class="bg-gray text-sec rounded-30 text-10 py-5 px-10 mt-10">20 min read</span>
|
||||
<h2 class="text-20 text-ter pt-10">{{ $blog->title }}</h2>
|
||||
</div>
|
||||
<div class="flex flex-col gap-10">
|
||||
<p class="text-14 text-black">{{ $blog->short_description }}</p>
|
||||
</div>
|
||||
</a>
|
||||
@endforeach
|
||||
</div>
|
||||
<!-- Pagination -->
|
||||
<!-- <div class="swiper-pagination"></div> -->
|
||||
@@ -369,12 +129,6 @@
|
||||
<div class="swiper-button-next"></div>
|
||||
<div class="swiper-button-prev"></div>
|
||||
</div>
|
||||
<div class="flex justify-center items-center ">
|
||||
<button class="text-center bg-white text-ter rounded-30 text-14">Load More</button>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
@@ -9,27 +9,20 @@
|
||||
<div class="row sm:px-20 pr-30 first-row pt-20 pb-30">
|
||||
<div class="col col-xl-6">
|
||||
<div class="franchise-model">
|
||||
<img src="assets/images/backgrounds_general/franchise-model.png" alt="">
|
||||
<img src="{{ asset($page->image) }}" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col col-xl-6">
|
||||
<div class="flex flex-col gap-10 pb-30 border-bottom">
|
||||
<h2 class="md:text-20 text-50 text-sec">Franchise</h2>
|
||||
<h2 class="md:text-20 text-50 text-sec">{{ $page->title }}</h2>
|
||||
<h3 class="md:text-20 text-50 text-brand">Raffles EduCare</h3>
|
||||
<p>Raffles Educare Associates Pvt. Ltd., established in 2005, is one of the best educational
|
||||
consultancy
|
||||
with a successful track record in the overseas education.Over the 15 years of excellence we have
|
||||
97%
|
||||
visa success rate along with highest student satisfaction, fulfilling the career dreams of many
|
||||
students. Since the year of inception, we have been providing educational services of
|
||||
international
|
||||
standards and escalated to be one of the leading institutions.</p>
|
||||
{!! $page->description !!}
|
||||
</div>
|
||||
|
||||
<div class="flex flex-col gap-20 pt-20">
|
||||
<h5 class="text-20 text-black">Have any questions?
|
||||
Call/Whatsapp</h5>
|
||||
<a class="text-26 text-black" href="tel:9801086208">+977 9801086208</a>
|
||||
<a class="text-26 text-black" href="tel:9801086208">+977 {{ setting('mobile') }}</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -108,19 +101,20 @@
|
||||
|
||||
<div class="franchise-form bg-white">
|
||||
|
||||
<form action="">
|
||||
<form action="{{ route('franchise.store') }}" method="post" id="franchise-form">
|
||||
@csrf
|
||||
<label class="text-16 pb-5" for="">Your Name <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
<div class="flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">First</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="first_name" id="">
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Last</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="last_name" id="">
|
||||
</div>
|
||||
|
||||
|
||||
@@ -130,33 +124,33 @@
|
||||
|
||||
<label class="text-16 pb-5" for="">Your Email Address <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="email" name=""
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="email" name="email"
|
||||
id="">
|
||||
|
||||
|
||||
|
||||
<label class="text-16 pb-5" for="">Your Phone <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="text" name="phone"
|
||||
id="">
|
||||
|
||||
|
||||
<label class="text-16 pb-5" for="">Your Address <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="text" name="address"
|
||||
id="">
|
||||
|
||||
<div class="flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">City</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
name="city" id="">
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">State/Region/Province</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
name="state" id="">
|
||||
</div>
|
||||
|
||||
|
||||
@@ -168,7 +162,7 @@
|
||||
<div class="sm:block flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Level to Invest</label>
|
||||
<select class="w-full py-5" name="" id="">
|
||||
<select class="w-full py-5" name="invest_level" id="">
|
||||
<option value="">Less than $20,000</option>
|
||||
<option value="">Less than $30,000</option>
|
||||
<option value="">Less than $40,000</option>
|
||||
@@ -176,9 +170,9 @@
|
||||
</select>
|
||||
|
||||
<!-- <select name="" id="franchise-invest">
|
||||
<option value="" selected hidden> Less than $10,000</option>
|
||||
<option value=""></option>
|
||||
</select> -->
|
||||
<option value="" selected hidden> Less than $10,000</option>
|
||||
<option value=""></option>
|
||||
</select> -->
|
||||
|
||||
|
||||
</div>
|
||||
@@ -186,7 +180,7 @@
|
||||
<label class="text-14 pb-5" for="">Do you currently own a business?
|
||||
(Yes/No)</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
name="own_business" id="">
|
||||
</div>
|
||||
|
||||
|
||||
@@ -199,26 +193,26 @@
|
||||
business</label>
|
||||
|
||||
|
||||
<textarea class="w-full mb-20 rounded-6 py-10 text-14 px-10" name="" id=""></textarea>
|
||||
<textarea class="w-full mb-20 rounded-6 py-10 text-14 px-10" name="yes_own_des" id=""></textarea>
|
||||
|
||||
|
||||
<div class="sm:block flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Preferred Franchise Location</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
name="franchise_location" id="">
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Timeframe to Start</label>
|
||||
<select class="w-full py-5" name="" id="">
|
||||
<select class="w-full py-5" name="start_time_frame" id="">
|
||||
<option value="">within 1 year</option>
|
||||
<option value="">After 1 year</option>
|
||||
|
||||
</select>
|
||||
<!-- <select name="" id="franchise-timeframe">
|
||||
<option value="" selected hidden> within 6 months</option>
|
||||
<option value=""></option>
|
||||
</select> -->
|
||||
<option value="" selected hidden> within 6 months</option>
|
||||
<option value=""></option>
|
||||
</select> -->
|
||||
</div>
|
||||
|
||||
|
||||
@@ -228,17 +222,18 @@
|
||||
</div>
|
||||
<div class="sm:w-full w-50percent">
|
||||
<label class="text-14 pb-5" for="">Do u already have an office setup ?</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="office_setup" id="">
|
||||
</div>
|
||||
|
||||
<label class="text-14 pb-5" for=""> Please add your bussiness portfolio website ,and
|
||||
let us know
|
||||
if you have any questions?</label>
|
||||
<textarea class="w-full mb-20 rounded-6 py-10 text-14 px-10" name="" id=""></textarea>
|
||||
<textarea class="w-full mb-20 rounded-6 py-10 text-14 px-10" name="website" id=""></textarea>
|
||||
|
||||
|
||||
<button class="button-hover px-20 py-10 bg-sec text-white text-16 border-0">Send
|
||||
<button type="submit" id="franchise-submit"
|
||||
class="button-hover px-20 py-10 bg-sec text-white text-16 border-0 franchise-submit">Send
|
||||
Message</button>
|
||||
</form>
|
||||
</div>
|
||||
@@ -250,15 +245,15 @@
|
||||
<div class="flex justify-center gap-30 pt-30 flex-wrap">
|
||||
<a class="flex items-center gap-10 border px-10 py-20" href="mailto:info@raffleseducare.com">
|
||||
<i class="fa-solid fa-envelope text-brand text-18"></i>
|
||||
<p class="text-white text-18 m-0 p-0">info@raffleseducare.com</p>
|
||||
<p class="text-white text-18 m-0 p-0">{{ setting('email') }}</p>
|
||||
</a>
|
||||
<a class="flex items-center gap-10 border px-10 py-20" href="tel:info@+977-1234567890">
|
||||
<i class="fa-solid fa-phone text-brand text-18"></i>
|
||||
<p class="text-white text-18 m-0 p-0">+977-1234567890</p>
|
||||
<p class="text-white text-18 m-0 p-0">+977-{{ setting('mobile') }}</p>
|
||||
</a>
|
||||
<div class="flex items-center gap-10 border px-10 py-20">
|
||||
<i class="fa-solid fa-location-dot text-brand text-18"></i>
|
||||
<p class="text-white text-18 m-0 p-0">Kathmandu, Nepal</p>
|
||||
<p class="text-white text-18 m-0 p-0">{{ setting('location') }}</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
@extends('client.raffles.layouts.app')
|
||||
@section('content')
|
||||
<div class="services-banner">
|
||||
<img src="assets/images/backgrounds_general/gallery-banner.png" width="1425" height="356" alt="Gallery ">
|
||||
<img src="{{ $page->banner }}" width="1425" height="356" alt="Gallery ">
|
||||
|
||||
</div>
|
||||
|
||||
@@ -17,28 +17,9 @@
|
||||
<div class="container">
|
||||
|
||||
<div class="gallery" id="gallery">
|
||||
<img src="assets/images/gallery/1.png" alt="img1">
|
||||
<img src="assets/images/gallery/2.png" alt="img1">
|
||||
<img src="assets/images/gallery/3.png" alt="img1">
|
||||
<img src="assets/images/gallery/4.png" alt="img1">
|
||||
<img src="assets/images/gallery/5.png" alt="img1">
|
||||
<img src="assets/images/gallery/16.png" alt="img1">
|
||||
<img src="assets/images/gallery/7.png" alt="img1">
|
||||
<img src="assets/images/gallery/8.png" alt="img1">
|
||||
<img src="assets/images/gallery/9.png" alt="img1">
|
||||
<img src="assets/images/gallery/10.png" alt="img1">
|
||||
<img src="assets/images/gallery/11.png" alt="img1">
|
||||
<img src="assets/images/gallery/12.png" alt="img1">
|
||||
<img src="assets/images/gallery/13.png" alt="img1">
|
||||
<img src="assets/images/gallery/14.png" alt="img1">
|
||||
<img src="assets/images/gallery/15.png" alt="img1">
|
||||
<img src="assets/images/gallery/16.png" alt="img1">
|
||||
<img src="assets/images/gallery/17.png" alt="img1">
|
||||
<img src="assets/images/gallery/17.png" alt="img1">
|
||||
<img src="assets/images/gallery/17.png" alt="img1">
|
||||
<img src="assets/images/gallery/17.png" alt="img1">
|
||||
<img src="assets/images/gallery/9.png" alt="img1">
|
||||
<img src="assets/images/gallery/11.png" alt="img1">
|
||||
@foreach ($page->images as $image)
|
||||
<img src="{{ asset($image) }}" alt="img1">
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
|
||||
|
@@ -3,7 +3,7 @@
|
||||
<section class="career">
|
||||
<div class="p-20 ">
|
||||
<div class="h-175 rounded-10 bg-after relative">
|
||||
<img class="h-full w-full rounded-30 object-cover" src="assets/images/general/about-banner.png" alt="">
|
||||
<img class="h-full w-full rounded-30 object-cover" src="{{ asset($page->banner) }}" alt="">
|
||||
|
||||
</div>
|
||||
|
||||
@@ -21,53 +21,7 @@
|
||||
|
||||
<section class="lqd-section pt-40 pb-30">
|
||||
<div class="container">
|
||||
<section>
|
||||
<div class="pb-30">
|
||||
<h5 class="text-14 font-bold underline">Last updated: April 17, 2025</h5>
|
||||
</div>
|
||||
|
||||
<div class="pb-20">
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
<p class="text-16 text-black"> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
</div>
|
||||
<div class="pb-20">
|
||||
<h4 class="text-24 font-bold pb-20">Accounts</h4>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.
|
||||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nemo, assumenda!</p>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
</div>
|
||||
<div class="pb-20">
|
||||
<h4 class="text-24 font-bold pb-20">Links To Other Web Sites</h4>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.
|
||||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nemo, assumenda!</p>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
</div>
|
||||
<div class="pb-20">
|
||||
<h4 class="text-24 font-bold pb-20">Termination</h4>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.
|
||||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nemo, assumenda!</p>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
<p class="text-16 text-black">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae
|
||||
sed vitae explicabo unde veritatis? Assumenda dignissimos atque consectetur facilis soluta.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
{!! $page->description !!}
|
||||
|
||||
|
||||
|
||||
|
@@ -7,23 +7,25 @@
|
||||
</div>
|
||||
|
||||
<section class="container py-30 free-resources">
|
||||
<div class="row">
|
||||
<div class="col col-md-3"></div>
|
||||
<div class="col col-md-9">
|
||||
<div class="flex justify-between items-center ">
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col col-md-3"></div>
|
||||
<div class="col col-md-9">
|
||||
<div class="flex justify-between items-center ">
|
||||
<div>
|
||||
|
||||
|
||||
<h2 class="md:text-30 text-60 text-sec"> {{ $page->title }}</h2>
|
||||
<div class="title-line "></div>
|
||||
|
||||
<h2 class="md:text-30 text-60 text-sec"> {{ $page->title }}</h2>
|
||||
<div class="title-line "></div>
|
||||
</div>
|
||||
<button class="review-button"><p>Review</p></button>
|
||||
|
||||
</div>
|
||||
<button class="review-button">
|
||||
<p>Review</p>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@if ($page->children)
|
||||
<section class="free-resources-content tab-container">
|
||||
@@ -82,49 +84,61 @@
|
||||
|
||||
|
||||
|
||||
@php
|
||||
$accordionId = "accordion-questions-{$index}";
|
||||
@endphp
|
||||
|
||||
<div class="py-40">
|
||||
<h3 class="text-20 text-brand">
|
||||
{{ $page->title }} FAQ's
|
||||
Frequently Asked Questions
|
||||
</h3>
|
||||
<div class="accordion accordion-title-underlined accordion-sm pt-20"
|
||||
id="accordion-questions" role="tablist" aria-multiselectable="true">
|
||||
@foreach ($page->custom as $key => $value)
|
||||
|
||||
<div class="accordion accordion-title-underlined accordion-sm pt-20"
|
||||
id="{{ $accordionId }}" role="tablist" aria-multiselectable="true">
|
||||
|
||||
@foreach ($child->custom as $key => $item)
|
||||
@php
|
||||
$headingId = "heading-{$index}-{$key}";
|
||||
$collapseId = "collapse-{$index}-{$key}";
|
||||
@endphp
|
||||
|
||||
<div class="accordion-item panel mb-10">
|
||||
<div class="accordion-heading" role="tab"
|
||||
id="heading-question-{{ $key + 1 }}">
|
||||
id="{{ $headingId }}">
|
||||
<h4 class="accordion-title">
|
||||
<a class="collapsed text-17 font-bold" role="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-parent="#accordion-questions"
|
||||
href="index.php#collapse-question-item-{{ $key + 1 }}"
|
||||
aria-expanded="false"
|
||||
aria-controls="collapse-question-item-{{ $key + 1 }}">
|
||||
<span
|
||||
class="accordion-expander text-16 text-black"><i
|
||||
href="#{{ $collapseId }}"
|
||||
aria-expanded="{{ $loop->first ? 'true' : 'false' }}"
|
||||
aria-controls="{{ $collapseId }}">
|
||||
<span class="accordion-expander text-16 text-black">
|
||||
<i
|
||||
class="lqd-icn-ess icon-ion-ios-arrow-forward"></i>
|
||||
<i
|
||||
class="lqd-icn-ess icon-ion-ios-arrow-forward"></i></span><span
|
||||
class="accordion-title-txt">{{ $value['icon'] ?? '' }}</span>
|
||||
class="lqd-icn-ess icon-ion-ios-arrow-forward"></i>
|
||||
</span>
|
||||
<span
|
||||
class="accordion-title-txt">{{ $item['icon'] ?? '' }}</span>
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div id="collapse-question-item-{{ $key + 1 }}"
|
||||
class="accordion-collapse collapse"
|
||||
data-bs-parent="#accordion-questions" role="tabpanel"
|
||||
aria-labelledby="heading-question-{{ $key + 1 }}">
|
||||
|
||||
<div id="{{ $collapseId }}"
|
||||
class="accordion-collapse collapse {{ $loop->first ? 'show' : '' }}"
|
||||
data-bs-parent="#{{ $accordionId }}" role="tabpanel"
|
||||
aria-labelledby="{{ $headingId }}">
|
||||
<div
|
||||
class="accordion-content text-14 leading-20 text-black">
|
||||
<p>{{ $value['key'] ?? '' }}</p>
|
||||
<p>{{ $item['key'] ?? '' }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- blog -->
|
||||
<div class="lqd-section blog pt-20" id="blog" data-custom-animations="true"
|
||||
{{-- <div class="lqd-section blog pt-20" id="blog" data-custom-animations="true"
|
||||
data-ca-options='{"animationTarget": ".btn, .animation-element", "ease": "power4.out", "initValues":{"x": "-10px", "y": "10px", "opacity":0} , "animations":{"x": "0px", "y": "0px", "opacity":1}}'>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@@ -174,7 +188,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user