popup
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
<div class="card custom-field-section">
|
<div class="card custom-field-section">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h6 class="card-title mb-0 fs-14">
|
<h6 class="card-title mb-0 fs-14">
|
||||||
Custom Fields
|
FAQ's Section
|
||||||
</h6>
|
</h6>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
@@ -13,31 +13,28 @@
|
|||||||
<div class="col-lg-12 clone-container">
|
<div class="col-lg-12 clone-container">
|
||||||
@for ($i = 0; $i < $loopCount; $i++)
|
@for ($i = 0; $i < $loopCount; $i++)
|
||||||
<div class="row clone-section mt-2">
|
<div class="row clone-section mt-2">
|
||||||
<div class="col-lg-2">
|
<div class="col-lg-10 mb-2">
|
||||||
@if ($i == 0)
|
{{-- @if ($i == 0)
|
||||||
{{ html()->label('Icon')->class('form-label')->for('icon[]') }}
|
{{ html()->label('Questions')->class('form-label')->for('icon[]') }}
|
||||||
@endif
|
@endif --}}
|
||||||
{{ html()->text('icon[]')->value($data[$i]['icon'] ?? old('icon[]'))->class('form-control')->placeholder('Icon class') }}
|
{{ html()->text('icon[]')->value($data[$i]['icon'] ?? old('icon[]'))->class('form-control')->placeholder('Enter Question') }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-4">
|
<div class="col-lg-10">
|
||||||
@if ($i == 0)
|
{{-- @if ($i == 0)
|
||||||
{{ html()->label('Title')->class('form-label')->for('key[]') }}
|
{{ html()->label('Answer')->class('form-label')->for('key[]') }}
|
||||||
@endif
|
@endif --}}
|
||||||
{{ html()->text('key[]')->value($data[$i]['key'] ?? old('key[]'))->class('form-control')->placeholder('Enter Title') }}
|
{{ html()->text('key[]')->value($data[$i]['key'] ?? old('key[]'))->class('form-control')->placeholder('Enter Answer') }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-4">
|
{{-- <div class="col-lg-2">
|
||||||
@if ($i == 0)
|
@if ($i == 0)
|
||||||
{{ html()->label('Content')->class('form-label')->for('value[]') }}
|
{{ html()->label('Content')->class('form-label')->for('value[]') }}
|
||||||
@endif
|
@endif
|
||||||
{{ html()->textarea('value[]')->value($data[$i]['value'] ?? old('value[]'))->class('form-control')->placeholder('Enter Content')->rows(1) }}
|
{{ html()->textarea('value[]')->value($data[$i]['value'] ?? old('value[]'))->class('form-control')->placeholder('Enter Content')->rows(1) }}
|
||||||
</div>
|
</div> --}}
|
||||||
|
|
||||||
<div class="col-lg-2">
|
<div class="col-lg-2 mt-0">
|
||||||
@if ($i == 0)
|
|
||||||
<label class="form-label">Action</label>
|
|
||||||
@endif
|
|
||||||
<div class="d-flex gap-2">
|
<div class="d-flex gap-2">
|
||||||
<a href="javascript:void(0)" class="btn btn-secondary btn-sm fs-6 clone">
|
<a href="javascript:void(0)" class="btn btn-secondary btn-sm fs-6 clone">
|
||||||
<i class="ri-add-line align-middle"></i>
|
<i class="ri-add-line align-middle"></i>
|
||||||
@@ -47,6 +44,10 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-12">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endfor
|
@endfor
|
||||||
</div>
|
</div>
|
||||||
|
@@ -146,7 +146,7 @@ return [
|
|||||||
],
|
],
|
||||||
|
|
||||||
[
|
[
|
||||||
'text' => 'Gallery',
|
'text' => 'Testimonial Videos',
|
||||||
'icon' => ' ri-camera-line',
|
'icon' => ' ri-camera-line',
|
||||||
'module' => 'CCMS',
|
'module' => 'CCMS',
|
||||||
'submenu' => [
|
'submenu' => [
|
||||||
|
@@ -46,7 +46,6 @@
|
|||||||
|
|
||||||
<!-- for select2 -->
|
<!-- for select2 -->
|
||||||
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
|
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
|
|
||||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet" />
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet" />
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
@@ -605,6 +604,7 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
|
<<<<<<< HEAD
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
const tabs = document.querySelectorAll('.accordion-content.resource');
|
const tabs = document.querySelectorAll('.accordion-content.resource');
|
||||||
|
|
||||||
@@ -619,7 +619,19 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
=======
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
const tabs = document.querySelectorAll('.accordion-content');
|
||||||
|
>>>>>>> 54c1fc467930bf558438abd67adc3594eeb8d2fa
|
||||||
|
|
||||||
|
tabs.forEach(tab => {
|
||||||
|
tab.addEventListener('click', function() {
|
||||||
|
tabs.forEach(t => t.classList.remove('highlight-tab'));
|
||||||
|
this.classList.add('highlight-tab');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
<div class="w-auto flex">
|
<div class="w-auto flex">
|
||||||
<div class="module-logo flex navbar-brand-plain py-20">
|
<div class="module-logo flex navbar-brand-plain py-20">
|
||||||
<a class="navbar-brand flex p-0 relative w-140" href="{{ url('/') }}" rel="home"><span
|
<a class="navbar-brand flex p-0 relative w-140" href="{{ url('/') }}" rel="home"><span
|
||||||
class="navbar-brand-inner post-rel"><img src="{{ setting('logo') }}"
|
class="navbar-brand-inner post-rel"><img src="{{ asset(setting('logo')) }}"
|
||||||
alt="raffle logo" /></span></a>
|
alt="raffle logo" /></span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -49,7 +49,8 @@
|
|||||||
alt="">
|
alt="">
|
||||||
</div>
|
</div>
|
||||||
<div class="service-content">
|
<div class="service-content">
|
||||||
<div class="service-name">{{ $country->title }}
|
<div class="service-name">Study in
|
||||||
|
{{ $country->title }}
|
||||||
</div>
|
</div>
|
||||||
<div class="service-description">
|
<div class="service-description">
|
||||||
{{ $country->short_description }}</div>
|
{{ $country->short_description }}</div>
|
||||||
|
@@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
<div class="py-40">
|
<div class="py-40">
|
||||||
<h3 class="text-20 text-brand">
|
<h3 class="text-20 text-brand">
|
||||||
Why Study in UK
|
Why Study in {{ $page->title }}
|
||||||
</h3>
|
</h3>
|
||||||
<div class="accordion accordion-title-underlined accordion-sm pt-20"
|
<div class="accordion accordion-title-underlined accordion-sm pt-20"
|
||||||
id="accordion-questions" role="tablist" aria-multiselectable="true">
|
id="accordion-questions" role="tablist" aria-multiselectable="true">
|
||||||
|
@@ -1,10 +1,9 @@
|
|||||||
@extends('client.raffles.layouts.app')
|
@extends('client.raffles.layouts.app')
|
||||||
@section('content')
|
@section('content')
|
||||||
@php
|
|
||||||
$firstAcc = $page->children[0];
|
|
||||||
@endphp
|
|
||||||
<div class="study-destinations-banner">
|
<div class="study-destinations-banner">
|
||||||
<img src="{{ $page->banner }}" width="1425" height="356" alt="study uk">
|
<img src="{{ asset($page->banner) }}" width="1425" height="356" alt="study uk">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section class="container py-30 free-resources">
|
<section class="container py-30 free-resources">
|
||||||
@@ -12,7 +11,8 @@
|
|||||||
<h2 class="md:text-30 text-60 text-sec">{{ $page->title }}</h2>
|
<h2 class="md:text-30 text-60 text-sec">{{ $page->title }}</h2>
|
||||||
<div class="title-line mx-auto"></div>
|
<div class="title-line mx-auto"></div>
|
||||||
</div>
|
</div>
|
||||||
@if ($page->children->count() > 0)
|
|
||||||
|
@if ($page->children)
|
||||||
<section class="free-resources-content tab-container">
|
<section class="free-resources-content tab-container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col col-md-3">
|
<div class="col col-md-3">
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
<div class="col col-md-6" data-float="ease-in-out">
|
<div class="col col-md-6" data-float="ease-in-out">
|
||||||
<div class="">
|
<div class="">
|
||||||
<img class="w-full h-full rounded-10"
|
<img class="w-full h-full rounded-10"
|
||||||
src="{{ $child->image }}" alt="">
|
src="{{ asset($child->image) }}" alt="">
|
||||||
</div>
|
</div>
|
||||||
<div class="lqd-particles-bg-wrap lqd-overlay flex pointer-events-none">
|
<div class="lqd-particles-bg-wrap lqd-overlay flex pointer-events-none">
|
||||||
<div
|
<div
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
<div class="py-40">
|
<div class="py-40">
|
||||||
<h3 class="text-20 text-brand">
|
<h3 class="text-20 text-brand">
|
||||||
Why {{ $page->title }}?
|
{{ $page->title }} FAQ's
|
||||||
</h3>
|
</h3>
|
||||||
<div class="accordion accordion-title-underlined accordion-sm pt-20"
|
<div class="accordion accordion-title-underlined accordion-sm pt-20"
|
||||||
id="accordion-questions" role="tablist" aria-multiselectable="true">
|
id="accordion-questions" role="tablist" aria-multiselectable="true">
|
||||||
@@ -163,5 +163,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@endif
|
@endif
|
||||||
|
@include('client.raffles.pages.call-request')
|
||||||
</section>
|
</section>
|
||||||
@endsection
|
@endsection
|
||||||
|
@@ -24,32 +24,33 @@
|
|||||||
class="w-full p-30 ml-5 bg-white rounded-10 module-title flex flex-col h-full relative bg-size bg-no-repeat bg-center-right transition-all mr-50 sm:mr-0">
|
class="w-full p-30 ml-5 bg-white rounded-10 module-title flex flex-col h-full relative bg-size bg-no-repeat bg-center-right transition-all mr-50 sm:mr-0">
|
||||||
|
|
||||||
<div class=" pt-10">
|
<div class=" pt-10">
|
||||||
<h4 class="text-ter text-46">
|
<h4 class="text-ter text-36">
|
||||||
Get in <span class="text-brand">touch</span>
|
Get in <span class="text-brand">touch</span>
|
||||||
</h4>
|
</h4>
|
||||||
<h5 class="font-medium text-20">Book your <span class="font-bold">FREE
|
<h5 class="font-medium text-16">Book your <span class="font-bold">FREE
|
||||||
consultation </span>with Certified Counsellors</h5>
|
consultation </span>with Certified Counsellors</h5>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="{{ route('counselor.store') }}" method="POST" id="counselor-form">
|
<form action="{{ route('counselor.store') }}" method="POST" id="counselor-form">
|
||||||
@csrf
|
@csrf
|
||||||
<input class="w-full mb-10 rounded-6 py-15 text-14 px-10 border-bottom" type="text"
|
<div class="flex justify-between items-center gap-5">
|
||||||
name="name" id="name" placeholder=" Name">
|
<input class="w-full mb-10 rounded-6 py-10 text-14 px-10 border-bottom"
|
||||||
<input class="w-full mb-10 rounded-6 py-15 text-14 px-10 border-bottom" type="text"
|
type="text" name="name" id="name" placeholder=" Name">
|
||||||
name="address" id="address" placeholder=" Address">
|
<input class="w-full mb-10 rounded-6 py-10 text-14 px-10 border-bottom"
|
||||||
|
type="text" name="address" id="address" placeholder=" Address">
|
||||||
|
</div>
|
||||||
<div class="flex justify-between items-center ">
|
<div class="flex justify-between items-center ">
|
||||||
|
|
||||||
<input class="w-60percent mb-10 rounded-6 py-15 text-14 px-10" type="email"
|
<input class="w-60percent mb-10 rounded-6 py-10 text-14 px-10" type="email"
|
||||||
name="email" id="email" placeholder="Your Email">
|
name="email" id="email" placeholder="Your Email">
|
||||||
<input class="w-30percent mb-10 rounded-6 py-15 text-14 px-10" type="number"
|
<input class="w-30percent mb-10 rounded-6 py-10 text-14 px-10" type="number"
|
||||||
inputmode="numeric" name="contact" id="contact" placeholder="Contact">
|
inputmode="numeric" name="contact" id="contact" placeholder="Contact">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input class="w-full mb-10 rounded-6 py-15 text-14 px-10" type="text"
|
<input class="w-full mb-10 rounded-6 py-10 text-14 px-10" type="text"
|
||||||
name="test_score" id="test_score"
|
name="test_score" id="test_score"
|
||||||
placeholder="Language Test Score (ilets overall: 7.0 )">
|
placeholder="Language Test Score (ilets overall: 7.0 )">
|
||||||
<input class="w-full mb-20 rounded-6 py-15 text-14 px-10" type="text"
|
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="text"
|
||||||
name="qualification" id="qualification"
|
name="qualification" id="qualification"
|
||||||
placeholder="Recent Education Qualification">
|
placeholder="Recent Education Qualification">
|
||||||
<input class="mb-20" type="checkbox">
|
<input class="mb-20" type="checkbox">
|
||||||
@@ -60,25 +61,7 @@
|
|||||||
Send Message</button>
|
Send Message</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div class="flex gap-40 py-30">
|
|
||||||
<div class="flex gap-30 items-center">
|
|
||||||
<i class="fa-solid fa-phone-volume text-black text-24"></i>
|
|
||||||
<div class="flex flex-col gap-5">
|
|
||||||
<h4 class="text-16 text-black">Phone</h4>
|
|
||||||
<a class="text-16 text-brand"
|
|
||||||
href="tel{{ setting('phone') }}">{{ setting('phone') }}</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="flex gap-30 items-center">
|
|
||||||
<i class="fa-solid fa-envelope text-black text-24"></i>
|
|
||||||
<div class="flex flex-col gap-5">
|
|
||||||
<h4 class="text-16 text-black">E-MAIL</h4>
|
|
||||||
<a class="text-16 text-brand"
|
|
||||||
href="mailto:{{ setting('email') }}">{{ setting('email') }}</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -95,6 +78,10 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
Reference in New Issue
Block a user