Compare commits

...

28 Commits

Author SHA1 Message Date
Mahesh Sharma 564529895f implementing-task-scheduler 2 years ago
Mahesh Sharma cce8fd095a appointment 2 years ago
tribikram f860a36947 [edit] contents for privacy and about us 2 years ago
Mahesh Sharma 67612b1116 blog 2 years ago
tribikram e269f8c285 [edit] privacy title 2 years ago
tribikram a898a3fa78 [edit] student visa icon changed 2 years ago
Mahesh Sharma ca9688fb69 et#38-rebase-conflicts 2 years ago
Mahesh Sharma f461b09d08 enquiry-form-changes 2 years ago
tribikram 401c406444 [add] hide btn on submit 2 years ago
tribikram 6a0a4ccb34 [edit] enquiry view table 2 years ago
Mahesh Sharma f2d67186be aapointment-navigation-for-admin 2 years ago
Mahesh Sharma 7f836f06c2 rebase-et#35 2 years ago
Mahesh Sharma 338d015069 enquiry-backend 2 years ago
tribikram 948b076c03 [edit] css fixed 2 years ago
tribikram 1821580633 [edit] form css 2 years ago
tribikram cf212411de [add] additional information client validation 2 years ago
Mahesh Sharma 4201b17cab rebase 2 years ago
Mahesh Sharma c5d88c4d03 enquiry-form-submit 2 years ago
Mahesh Sharma 92b515bd80 enquiry_form_element-name-change 2 years ago
tribikram b3aaa90f34 [edit] enquiry form 2 years ago
Mahesh Sharma e1eb4fa70c et#31-rebase-conflict 2 years ago
Mahesh Sharma ed3918d02a formating 2 years ago
tribikram 4a305d6a92 [edit] type date 2 years ago
tribikram c4b87ab6c0 [add] enquiry form 2 years ago
tribikram 3940ca697f [edit] css fixed 2 years ago
Mahesh Sharma e7b33f2ccc appoitment 2 years ago
tribikram 2520f2017b [edit] active class for appointment date 2 years ago
Mahesh Sharma e3210482fa changes-in-appointment 2 years ago
  1. 36
      app/Console/Commands/CheckQueue.php
  2. 33
      app/Console/Commands/ProcessQueue.php
  3. 2
      app/Console/Kernel.php
  4. 7
      app/Http/Controllers/AboutUsController.php
  5. 120
      app/Http/Controllers/Admin/AppointmentController.php
  6. 15
      app/Http/Controllers/Admin/HomeController.php
  7. 87
      app/Http/Controllers/AppointmentController.php
  8. 2
      app/Http/Controllers/BlogController.php
  9. 76
      app/Http/Controllers/EnquiryController.php
  10. 17
      app/Http/Controllers/HomeController.php
  11. 21
      app/Http/Controllers/VisaController.php
  12. 41
      app/Jobs/SendEnquiryMailJob.php
  13. 65
      app/Mail/EnquiryMail.php
  14. 3
      app/Models/AboutUs.php
  15. 3
      app/Models/AboutUsPoint.php
  16. 6
      app/Models/Contact.php
  17. 11
      app/Models/Country.php
  18. 13
      app/Models/Enquiry.php
  19. 4
      config/database.php
  20. 59
      database/migrations/2023_02_16_171148_create_enquiries_table.php
  21. 13
      database/seeders/AppointmentTableSeeder.php
  22. 52
      public/admin/css/custom-admin.css
  23. 311
      public/frontend/css/style.css
  24. BIN
      public/frontend/icons/account-student.png
  25. BIN
      public/frontend/icons/career-counselling.png
  26. BIN
      public/frontend/icons/jrp.png
  27. BIN
      public/frontend/icons/noto_graduation-cap.png
  28. 12
      public/frontend/icons/noto_graduation-cap.svg
  29. BIN
      public/images/news_and_update/2023/02/15/917540415d7720a1c316f6f4b5b6fa70.jpg
  30. BIN
      public/images/setting/2023/02/17/115fa12177ac4180dec5b3707d601bb2.png
  31. 41
      resources/views/about.blade.php
  32. 110
      resources/views/admin/about_us/create.blade.php
  33. 4
      resources/views/admin/appointment/edit.blade.php
  34. 26
      resources/views/admin/appointment/index.blade.php
  35. 157
      resources/views/admin/career/create.blade.php
  36. 203
      resources/views/admin/career/edit.blade.php
  37. 116
      resources/views/admin/career/index.blade.php
  38. 148
      resources/views/admin/career/show.blade.php
  39. 53
      resources/views/admin/enquiry/index.blade.php
  40. 22
      resources/views/admin/enquiry/mail.blade.php
  41. 165
      resources/views/admin/enquiry/show.blade.php
  42. 39
      resources/views/admin/index.blade.php
  43. 57
      resources/views/admin/layouts/app.blade.php
  44. 68
      resources/views/admin/layouts/menubar.blade.php
  45. 4
      resources/views/admin/login.blade.php
  46. 157
      resources/views/admin/referral/create.blade.php
  47. 203
      resources/views/admin/referral/edit.blade.php
  48. 135
      resources/views/admin/referral/show.blade.php
  49. 214
      resources/views/appointment.blade.php
  50. 1
      resources/views/appointment_confirmed.blade.php
  51. 25
      resources/views/appointment_confirmed_for_admin.blade.php
  52. 24
      resources/views/blog-detail.blade.php
  53. 38
      resources/views/blogs.blade.php
  54. 8
      resources/views/contact.blade.php
  55. 552
      resources/views/enquiry-form.blade.php
  56. 76
      resources/views/enquiry_mail.blade.php
  57. 70
      resources/views/layout/app.blade.php
  58. 166
      resources/views/privacy_policy.blade.php
  59. 21
      resources/views/welcome.blade.php
  60. 418
      routes/web.php

@ -0,0 +1,36 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Queue;
class CheckQueue extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'queue:check';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Check if there is a job in the queue';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$count = Queue::size(); // Get the number of jobs in the queue
if ($count > 0) {
$this->call('queue:process'); // Call the ProcessQueue command if there is a job in the queue
}
}
}

@ -0,0 +1,33 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Queue;
class ProcessQueue extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'queue:process';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Process the tasks in the queue';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
Queue::daemon(); // Process the tasks in the queue
}
}

@ -15,7 +15,7 @@ class Kernel extends ConsoleKernel
*/ */
protected function schedule(Schedule $schedule) protected function schedule(Schedule $schedule)
{ {
// $schedule->command('inspire')->hourly(); $schedule->command('queue:check')->everyMinute();
} }
/** /**

@ -7,8 +7,9 @@ use App\Models\AboutUs;
class AboutUsController extends Controller class AboutUsController extends Controller
{ {
public function index(){ public function index()
$about = AboutUs::where('status',true)->first(); {
return view('about',compact('about')); $about = AboutUs::where('status', true)->first();
return view('about', compact('about'));
} }
} }

@ -7,89 +7,142 @@ use App\Http\Controllers\Controller;
use App\Models\Appointment; use App\Models\Appointment;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Carbon\Carbon;
class AppointmentController extends Controller class AppointmentController extends Controller
{ {
protected $view= 'admin.appointment.'; protected $view = 'admin.appointment.';
protected $redirect = 'admin/appointments'; protected $redirect = 'admin/appointments';
// protected $service;
public function index(){
$appointments = Appointment::orderBy('id','DESC'); public function education_appointments()
if(\request('date')){ {
$key = \request('date'); $appointments = Appointment::where('service_type', '1')->orderBy('id', 'DESC');
$appointments = $appointments->whereDate('date',$key); if (\request('date')) {
$date = \request('date');
$appointments = $appointments->whereDate('date', $date);
}
if (\request('status')) {
$status = \request('status');
$appointments = $appointments->where('status', $status);
}
if (\request('is_booked')) {
$is_booked = (\request('is_booked')) == '1' ? true : false;
$appointments = $appointments->where('is_booked', $is_booked);
}
$appointments = $appointments->paginate(20);
$service = 'Education';
$is_booked = $is_booked ?? null;
$date = $date ?? null;
$status = $status ?? null;
return view($this->view . 'index', compact('appointments', 'service', 'is_booked', 'date', 'status'));
}
public function visa_appointments()
{
$appointments = Appointment::where('service_type', '2')->orderBy('id', 'DESC');
if (\request('date')) {
$date = \request('date');
$appointments = $appointments->whereDate('date', $date);
}
if (\request('status')) {
$status = \request('status');
$appointments = $appointments->where('status', $status);
} }
if(\request('status')){ if (\request('is_booked')) {
$key = \request('status');
$appointments = $appointments->where('status',$key); $is_booked = (\request('is_booked')) == '1' ? true : false;
$appointments = $appointments->where('is_booked', $is_booked);
} }
$appointments = $appointments->paginate(20); $appointments = $appointments->paginate(20);
return view($this->view.'index',compact('appointments')); $is_booked = $is_booked ?? null;
$date = $date ?? null;
$status = $status ?? null;
$service = 'Migration|Visa';
return view($this->view . 'index', compact('appointments', 'service', 'is_booked', 'date', 'status'));
} }
public function create() public function create()
{ {
return view($this->view.'create'); return view($this->view . 'create');
} }
public function store(Request $request) public function store(Request $request)
{ {
$request->validate([ $request->validate([
'date' => 'required|date', 'date' => 'required|date',
'start_time' => 'required|date_format:H:i A', 'start_time' => 'required|date_format:H:i',
'end_time' => 'required|date_format:H:i A', 'end_time' => 'required|date_format:H:i',
// 'location' => 'required|max:255',
// 'description' => 'required',
]); ]);
$start_time = Carbon::createFromFormat('H:i', $request->get('start_time'))->format('H:i A');
$end_time = Carbon::createFromFormat('H:i', $request->get('end_time'))->format('H:i A');
$appointment = new Appointment([ $appointment = new Appointment([
'date' => $request->get('date'), 'date' => $request->get('date'),
'start_time' => $request->get('start_time'), 'start_time' => $start_time,
'end_time' => $request->get('end_time'), 'end_time' => $end_time,
'location' => $request->get('location'), 'location' => $request->get('location'),
'description' => $request->get('description'), 'description' => $request->get('description'),
'service_type' => $request->get('service_type'), 'service_type' => $request->get('service_type'),
]); ]);
$appointment->save(); $appointment->save();
if($request->get('service_type') == "1"){
$service = 'education';
}else{
$service = 'visa';
}
return redirect($this->redirect)->with('success', 'Appointment has been added'); return redirect($this->redirect.'/'.$service)->with('success', 'Appointment has been added');
} }
public function edit($id) public function edit($id)
{ {
$appointment = Appointment::find($id); $appointment = Appointment::findorfail($id);
$start_time = explode(" ", $appointment->start_time);
return view($this->view.'edit', compact('appointment')); $start_time = $start_time[0];
$end_time = explode(" ", $appointment->end_time);
$end_time = $end_time[0];
$appointment['start_time'] = $start_time;
$appointment['end_time'] = $end_time;
return view($this->view . 'edit', compact('appointment'));
} }
public function update(Request $request, $id) public function update(Request $request, $id)
{ {
$request->validate([ $request->validate([
'date' => 'required|date', 'date' => 'required|date',
'start_time' => 'required|date_format:H:i A', 'start_time' => 'required|date_format:H:i',
'end_time' => 'required|date_format:H:i A', 'end_time' => 'required|date_format:H:i',
// 'location' => 'required|max:255',
// 'description' => 'required',
]); ]);
$start_time = Carbon::createFromFormat('H:i', $request->get('start_time'))->format('H:i A');
$end_time = Carbon::createFromFormat('H:i', $request->get('end_time'))->format('H:i A');
$appointment = Appointment::find($id); $appointment = Appointment::find($id);
$appointment->date = $request->get('date'); $appointment->date = $request->get('date');
$appointment->start_time = $request->get('start_time'); $appointment->start_time = $start_time;
$appointment->end_time = $request->get('end_time'); $appointment->end_time = $end_time;
$appointment->location = $request->get('location'); $appointment->location = $request->get('location');
$appointment->description = $request->get('description'); $appointment->description = $request->get('description');
$appointment->service_type = $request->get('service_type'); $appointment->service_type = $request->get('service_type');
$appointment->status = $request->get('status');
$appointment->save(); $appointment->save();
if($request->get('service_type') == "1"){
$service = 'education';
}else{
$service = 'visa';
}
return redirect($this->redirect)->with('success', 'Appointment has been updated'); return redirect($this->redirect.'/'.$service)->with('success', 'Appointment has been updated');
} }
public function show($id){ public function show($id)
{
$appointment = Appointment::with('appointment_booking_detail')->findorfail($id); $appointment = Appointment::with('appointment_booking_detail')->findorfail($id);
return view($this->view.'show', compact('appointment')); return view($this->view . 'show', compact('appointment'));
} }
public function destroy($id) public function destroy($id)
@ -100,4 +153,3 @@ class AppointmentController extends Controller
return redirect($this->redirect)->with('success', 'Appointment has been deleted'); return redirect($this->redirect)->with('success', 'Appointment has been deleted');
} }
} }

@ -4,8 +4,9 @@ namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller; use App\Http\Controllers\Controller;
use App\Models\Contact; use App\Models\Contact;
use App\Models\Referral; use App\Models\Enquiry;
use App\Models\Subscription; use App\Models\Subscription;
use App\Models\VisaService;
use App\Models\Service; use App\Models\Service;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Illuminate\Routing\Route; use Illuminate\Routing\Route;
@ -20,12 +21,14 @@ class HomeController extends Controller
public function indexAdmin() public function indexAdmin()
{ {
if(Auth::check()){ if(Auth::check()){
$service= Service::where('status',true); $visa_service= VisaService::where('status',true);
$education_service= Service::where('status',true);
$enquiry= Enquiry::all();
$contact= Contact::all(); $contact= Contact::all();
$subscription= Contact::all(); $subscription= Subscription::all();
$contacts = Contact::paginate(config('custom.per_page')); $contacts = Contact::paginate(config('custom.per_page'));
// $referrals=Referral::paginate(config('custom.per_page')); // $referrals=Referral::paginate(config('custom.per_page'));
return view('admin.index', compact( 'service', 'contact', 'contacts','subscription')); return view('admin.index', compact( 'visa_service', 'education_service', 'enquiry', 'contacts','contact','subscription'));
} }
return view('admin.login'); return view('admin.login');
} }
@ -77,7 +80,7 @@ class HomeController extends Controller
'password' => 'required|min:8|confirmed', 'password' => 'required|min:8|confirmed',
]); ]);
$user = auth()->user(); $user = auth()->user();
if(Hash::check($request->old_password,$user->password)){ if(Hash::check($request->old_password,$user->password)){
$user = User::findorfail($user->id); $user = User::findorfail($user->id);
@ -88,7 +91,7 @@ class HomeController extends Controller
return redirect()->back()->with('custom_error','Your old password is incorrect! Please try again.'); return redirect()->back()->with('custom_error','Your old password is incorrect! Please try again.');
} }

@ -11,8 +11,8 @@ class AppointmentController extends Controller
{ {
public function index(){ public function index(){
$educationAppointments = Appointment::where('service_type', '1')->get(); $educationAppointments = Appointment::where('date', '>=', Carbon::today())->where('service_type', '1')->get();
$visaAppointments = Appointment::where('service_type', '2')->get(); $visaAppointments = Appointment::where('date', '>=', Carbon::today())->where('service_type', '2')->get();
// foreach($educationAppointments as $appointment){ // foreach($educationAppointments as $appointment){
// $startTime = Carbon::createFromFormat('H:i', $appointment->start_time); // $startTime = Carbon::createFromFormat('H:i', $appointment->start_time);
// $date = Carbon::createFromFormat('H:i', $appointment->start_time); // $date = Carbon::createFromFormat('H:i', $appointment->start_time);
@ -30,6 +30,7 @@ class AppointmentController extends Controller
$month_number = date_parse($date_parts[1])['month']; $month_number = date_parse($date_parts[1])['month'];
$carbon = Carbon::createFromDate($date_parts[3], $month_number, $date_parts[2]); $carbon = Carbon::createFromDate($date_parts[3], $month_number, $date_parts[2]);
$date = $carbon->format('Y-m-d'); $date = $carbon->format('Y-m-d');
$type_id = $request->id; $type_id = $request->id;
$appointments_all = Appointment::whereDate('date',$date)->where(['service_type' => $type_id,'is_booked' => false,'status' => 1])->get(); $appointments_all = Appointment::whereDate('date',$date)->where(['service_type' => $type_id,'is_booked' => false,'status' => 1])->get();
$old_date = Carbon::createFromFormat('Y-m-d', $date); $old_date = Carbon::createFromFormat('Y-m-d', $date);
@ -37,22 +38,19 @@ class AppointmentController extends Controller
$currentTime = Carbon::now(); $currentTime = Carbon::now();
$appointments = []; $appointments = [];
foreach ($appointments_all as $appointment) { foreach ($appointments_all as $appointment) {
$start_time = date("H:i", strtotime($appointment->start_time)); $start_time = explode(" ", $appointment->start_time);
$start_time = $start_time[0];
$appointmentDate = Carbon::createFromFormat('Y-m-d H:i', $appointment->date.' '.$start_time); $appointmentDate = Carbon::createFromFormat('Y-m-d H:i', $appointment->date.' '.$start_time);
if ($appointmentDate->gt($currentTime)) { if ($appointmentDate->gt($currentTime)) {
array_push($appointments, $appointment); array_push($appointments, $appointment);
} }
} }
// $users = DB::table('appointments')->whereDate('created_at', '2022-12-01')->get();
// $time = [];
// foreach($appointments as $appointment){
// array_push($time, [$appointment->start_time, $appointment->id]);
// }
// dd($time);
return response()->json(['appointment' => $appointments,'formated_date' => $formated_date]); return response()->json(['appointment' => $appointments,'formated_date' => $formated_date]);
} }
public function form_submit(Request $request){ public function form_submit(Request $request){
$request->validate([ $request->validate([
'name' => 'required', 'name' => 'required',
'email' => 'required|email', 'email' => 'required|email',
@ -69,17 +67,21 @@ class AppointmentController extends Controller
$appointment_detail->appointment_id = $appointment_id; $appointment_detail->appointment_id = $appointment_id;
$email = $request['email']; $email = $request['email'];
$name = $request['name']; $name = $request['name'];
$phone = $request['phone'];
if($appointment_detail->save()){ if($appointment_detail->save()){
$date = Carbon::createFromFormat('Y-m-d', $appointment->date); $date = Carbon::createFromFormat('Y-m-d', $appointment->date);
$formated_date = $date->format('M d, Y'); $formated_date = $date->format('M d, Y');
$appointment->is_booked = true; $appointment->is_booked = true;
$appointment->save(); $appointment->save();
$subject = 'Appointment Confirmed'; $subject = 'Appointment Booked Successfully.';
\Mail::send('appointment_confirmed', array( dispatch(function() use ($name,$email,$phone,$subject,$formated_date,$appointment) {
\Mail::send('appointment_confirmed', array(
'full_name' =>$name, 'full_name' =>$name,
'email' =>$email, 'email' =>$email,
'date' => $formated_date, 'date' => $formated_date,
@ -87,26 +89,57 @@ class AppointmentController extends Controller
'start_time' => $appointment['start_time'], 'start_time' => $appointment['start_time'],
'end_time' => $appointment['end_time'], 'end_time' => $appointment['end_time'],
'phone' =>$request['phone'], 'phone' =>$phone,
'subject' =>$subject 'subject' =>$subject
), function($message) use ($subject,$email,$name){ ), function($message) use ($subject,$email,$name){
// $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback'; // $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback';
$message->subject($subject); $message->subject($subject);
$message->to($email, $name)->subject($subject); // $message->from('admin@eteducation.com.au', 'Admin');
// $message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject); $message->to($email, $name)->subject($subject);
// $message->cc('suman@extratechs.com.au', 'Extratech')->subject($subject); // $message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject);
// $message->cc('admin@eteducation.com.au', 'Extratech')->subject($subject);
}); });
}
return response()->json(['appointment_detail' => $appointment_detail,'appointment' => $appointment,'formated_date' => $formated_date],200);
});
dispatch(function() use ($name,$email,$phone,$subject,$formated_date,$appointment) {
\Mail::send('appointment_confirmed_for_admin', array(
'full_name' =>$name,
'email' =>$email,
'date' => $formated_date,
'start_time' => $appointment['start_time'],
'end_time' => $appointment['end_time'],
'phone' =>$phone,
'subject' =>$subject
), function($message) use ($subject){
// $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback';
$message->subject($subject);
// $message->to($email, $name)->subject($subject);
$message->to('mahesh@extratechs.com.au', 'Extratech')->subject($subject);
// $message->cc('admin@eteducation.com.au', 'Extratech')->subject($subject);
});
});
}
return response()->json(['appointment_detail' => $appointment_detail,'appointment' => $appointment,'formated_date' => $formated_date],200);
} }
} }

@ -9,7 +9,7 @@ use App\Models\Page;
class BlogController extends Controller class BlogController extends Controller
{ {
public function index(){ public function index(){
$page = Page::where(['title' => 'Blog','status' => 1])->first(); $page = Page::where(['title' => 'Blogs','status' => 1])->first();
$blogs = NewsAndUpdate::where('status',1)->get(); $blogs = NewsAndUpdate::where('status',1)->get();
return view('blogs',compact('blogs','page')); return view('blogs',compact('blogs','page'));
} }

@ -0,0 +1,76 @@
<?php
namespace App\Http\Controllers;
use App\Jobs\SendEnquiryMailJob;
use App\Models\Country;
use App\Models\Enquiry;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Session;
class EnquiryController extends Controller
{
public function form()
{
$countries = Country::all();
return view('enquiry-form', compact('countries'));
}
public function submit(Request $request)
{
$work_experience = $request->get('work_experience');
if ($work_experience == 'no') {
$request['work_experience_details'] = null;
$request['salary_mode'] = null;
}
$marital_status = $request->get('marital_status');
if ($marital_status == 'Widow' || $marital_status == 'Single') {
$request['married_date'] = null;
$request['spouse_academics'] = null;
$request['spouse_work_experience'] = null;
$request['spouse_salary_mode'] = null;
}
DB::beginTransaction();
try {
$enquiry = Enquiry::create($request->all());
} catch (\Exception $e) {
DB::rollback();
return redirect()->back()->with(['msg' => 'Something went wrong. Please try again!', 'status' => false], 400);
}
DB::commit();
dispatch(new SendEnquiryMailJob($enquiry));
return redirect()->back()->with(['msg' => 'We have recieved your enquiry. You will be contacted soon!', 'status' => true], 200);
}
public function index()
{
$enquiries = Enquiry::orderBy('id', 'DESC');
if (\request('name')) {
$key = \request('name');
$enquiries = $enquiries->where('first_name', 'like', $key . '%');
}
if (\request('email')) {
$key = \request('email');
$enquiries = $enquiries->where('email', 'like', $key . '%');
}
$enquiries = $enquiries->paginate(30);
return view('admin.enquiry.index', compact('enquiries'));
}
public function show($id)
{
$enquiry = Enquiry::findorfail($id);
return view('admin.enquiry.show', compact('enquiry'));
}
public function delete($id)
{
$enquiry = Enquiry::findorfail($id);
$enquiry->delete();
Session::flash('success', 'Enquiry has been successfully deleted!');
return redirect('admin/enquiries');
}
}

@ -8,17 +8,26 @@ use App\Models\Testimonial;
use App\Models\NewsAndUpdate; use App\Models\NewsAndUpdate;
use App\Models\Subscription; use App\Models\Subscription;
use App\Models\AboutUs; use App\Models\AboutUs;
use Illuminate\Support\Facades\Artisan;
use Database\Seeders\AppointmentTableSeeder;
class HomeController extends Controller class HomeController extends Controller
{ {
public function index(){ public function runSeeder(){
Artisan::call('db:seed', ['--class' => AppointmentTableSeeder::class]);
}
public function runQueueJobs(){
Artisan::call('queue:listen');
}
public function index(){
$sliders = Slider::where('status',1)->get(); $sliders = Slider::where('status',1)->get();
$testimonials = Testimonial::where('status',1)->get(); $testimonials = Testimonial::where('status',1)->get();
$blogs = NewsAndUpdate::where('status',1)->get(); $blogs = NewsAndUpdate::where('status',1)->get();
$about_us = AboutUs::where('status',1)->get(); $about_us = AboutUs::where('status',1)->get();
return view('welcome',compact('sliders','testimonials','blogs','about_us')); return view('welcome',compact('sliders','testimonials','blogs','about_us'));
} }
public function subscribe(Request $request) public function subscribe(Request $request)
{ {
$email = $request->email; $email = $request->email;
@ -42,7 +51,7 @@ class HomeController extends Controller
$message->to('admin@eteducation.com.au', 'Et-Visa')->subject($subject); $message->to('admin@eteducation.com.au', 'Et-Visa')->subject($subject);
$message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject); $message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject);
$message->cc('suman@extratechs.com.au', 'Extratech')->subject($subject); $message->cc('suman@extratechs.com.au', 'Extratech')->subject($subject);
}); });
return response()->json(['success' => 'Thank You for Subscribing !','status' =>'Ok'],200); return response()->json(['success' => 'Thank You for Subscribing !','status' =>'Ok'],200);

@ -8,15 +8,18 @@ use App\Models\Page;
class VisaController extends Controller class VisaController extends Controller
{ {
public function index(){
$page = Page::where(['title' => 'Visa','status' => 1])->first(); public function index()
$visas = VisaService::where('status',1)->get(); {
return view('visa',compact('visas','page')); $page = Page::where(['title' => 'Visa', 'status' => 1])->first();
$visas = VisaService::where('status', 1)->get();
return view('visa', compact('visas', 'pages'));
} }
public function details($slug){ public function details($slug)
$page = Page::where(['title' => 'Visa','status' => 1])->first(); {
$visas = VisaService::where('status',1)->get(); $page = Page::where(['title' => 'Visa', 'status' => 1])->first();
$service = VisaService::where(['slug' => $slug,'status' => 1])->orderby('order_by','asc')->first(); $visas = VisaService::where('status', 1)->get();
return view('visa',compact('service','page','visas')); $service = VisaService::where(['slug' => $slug, 'status' => 1])->orderby('order_by', 'asc')->first();
return view('visa', compact('service', 'page', 'visas'));
} }
} }

@ -0,0 +1,41 @@
<?php
namespace App\Jobs;
use App\Mail\EnquiryMail;
use App\Models\Setting;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Mail;
class SendEnquiryMailJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*
* @return void
*/
protected $enquiry;
public function __construct($enquiry)
{
$this->enquiry = $enquiry;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$email = Setting::where('key', 'email')->get('value')->first()->value;
Mail::to($email)->send(new EnquiryMail($this->enquiry));
}
}

@ -0,0 +1,65 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class EnquiryMail extends Mailable
{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*
* @return void
*
*/
protected $enquiry;
public function __construct($enquiry)
{
$this->enquiry = $enquiry;
}
/**
* Get the message envelope.
*
* @return \Illuminate\Mail\Mailables\Envelope
*/
public function envelope()
{
return new Envelope(
subject: 'Enquiry Mail',
);
}
/**
* Get the message content definition.
*
* @return \Illuminate\Mail\Mailables\Content
*/
public function content()
{
return new Content(
view: 'enquiry_mail',
with: [
'enquiry' => $this->enquiry,
],
);
}
/**
* Get the attachments for the message.
*
* @return array
*/
public function attachments()
{
return [];
}
}

@ -10,7 +10,8 @@ class AboutUs extends Model
use HasFactory; use HasFactory;
protected $table = "about_us"; protected $table = "about_us";
public function about_us_points(){ public function about_us_points()
{
return $this->hasMany(AboutUsPoint::class); return $this->hasMany(AboutUsPoint::class);
} }
} }

@ -10,7 +10,8 @@ class AboutUsPoint extends Model
use HasFactory; use HasFactory;
protected $table = "about_us_points"; protected $table = "about_us_points";
public function about_us(){ public function about_us()
{
return $this->belongsto(AboutUs::class); return $this->belongsto(AboutUs::class);
} }
} }

@ -8,10 +8,10 @@ use Illuminate\Database\Eloquent\Model;
class Contact extends Model class Contact extends Model
{ {
use HasFactory; use HasFactory;
protected $fillable=['fullname','email','service_id','phone','message','status','created_at']; protected $fillable = ['fullname', 'email', 'service_id', 'phone', 'message', 'status', 'created_at'];
public function service(){ public function service()
{
return $this->belongsto(Service::class); return $this->belongsto(Service::class);
} }
} }

@ -0,0 +1,11 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Country extends Model
{
use HasFactory;
}

@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Enquiry extends Model
{
use HasFactory;
protected $guarded = ['id'];
}

@ -48,8 +48,8 @@ return [
'url' => env('DATABASE_URL'), 'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'), 'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'), 'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'), 'database' => env('DB_DATABASE', 'eteducation'),
'username' => env('DB_USERNAME', 'forge'), 'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''), 'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''), 'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4', 'charset' => 'utf8mb4',

@ -0,0 +1,59 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('enquiries', function (Blueprint $table) {
$table->id();
$table->string('first_name');
$table->string('middle_name')->nullable();
$table->string('last_name');
$table->date('dob');
$table->string('cob');
$table->string('gender');
$table->string('email');
$table->string('phone');
$table->string('address');
$table->string('highest_qualification');
$table->string('stream')->nullable();
$table->string('gpa');
$table->string('graduate_year');
$table->string('gap')->nullable();
$table->string('current_status')->nullable();
$table->string('work_experience');
$table->text('work_experience_details')->nullable();
$table->string('salary_mode')->nullable();
$table->string('test_score')->nullable();
$table->string('marital_status');
$table->string('married_date')->nullable();
$table->string('spouse_academics')->nullable();
$table->string('spouse_work_experience')->nullable();
$table->string('spouse_salary_mode')->nullable();
$table->string('immigration_history')->nullable();
$table->string('desired_study_field')->nullable();
$table->string('desired_location')->nullable();
$table->boolean('status')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('enquiries');
}
};

@ -20,16 +20,21 @@ class AppointmentTableSeeder extends Seeder
public function run() public function run()
{ {
$latestAppointment = DB::table('appointments')->latest('date')->first();
$startDate = $latestAppointment ? Carbon::parse($latestAppointment->date)->addDay() : Carbon::now();
$startTime = Carbon::parse("9:00 AM"); $startTime = Carbon::parse("9:00 AM");
$endTime = Carbon::parse("5:00 PM"); $endTime = Carbon::parse("5:00 PM");
foreach(config('custom.service_type') as $key => $value){ foreach(config('custom.service_type') as $key => $value){
for ($i = 0; $i < 7; $i++) { for ($i = 0; $i < 7; $i++) {
$date = Carbon::now()->addDays($i); $date = $startDate->copy()->addDays($i);
for ($j = 0; $j <= ((($endTime->diffInMinutes($startTime)) / 30)-1); $j++) { for ($j = 0; $j <= ((($endTime->diffInMinutes($startTime)) / 30)-1); $j++) {
$currentTime = $startTime->copy()->addMinutes(30 * $j); $currentTime = $startTime->copy()->addMinutes(30 * $j);
$currentEndTime = $startTime->copy()->addMinutes(30 * $j + 30); $currentEndTime = $startTime->copy()->addMinutes(30 * $j + 30);
DB::table('appointments')->insert([ DB::table('appointments')->insert([
'date' => $date, 'date' => $date,
'start_time' => $currentTime->format("H:i A"), 'start_time' => $currentTime->format("H:i A"),
@ -39,6 +44,6 @@ class AppointmentTableSeeder extends Seeder
} }
} }
} }
} }
} }

@ -1,5 +1,5 @@
.sb{ .sb{
background: #13a64f; background: #326cbf;
padding-bottom: 50px; padding-bottom: 50px;
} }
.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active{ .sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active{
@ -28,7 +28,7 @@
margin-top: 10px; margin-top: 10px;
} }
.main-header{ .main-header{
background: #13a64f; background: #326cbf;
} }
.nav-link i{ .nav-link i{
color:#fff; color:#fff;
@ -206,10 +206,7 @@ svg{
.create-button{ .create-button{
margin-top:10px; margin-top:10px;
} }
.create-button .col-md-12{
/* display:flex;
justify-content:center; */
}
.create-button .col-md-12 button{ .create-button .col-md-12 button{
padding:10px 50px; padding:10px 50px;
} }
@ -265,11 +262,6 @@ svg{
background: none; background: none;
} }
.table-search{
/* width: fit-content; */
}
.search-form .table-search input{ .search-form .table-search input{
/* margin-right: 10px; */ /* margin-right: 10px; */
border-radius: 5px!important; border-radius: 5px!important;
@ -277,7 +269,6 @@ svg{
.ds-input:focus{ .ds-input:focus{
border-color: #1850b7; border-color: #1850b7;
} }
/* new edit */ /* new edit */
.table td{ .table td{
@ -320,9 +311,6 @@ svg{
background: none; background: none;
border:none; border:none;
color:#fff; color:#fff;
}
.dropdown-menubar .dropdown-menu[data-bs-popper]{
} }
.dropdown-menubar button:active{ .dropdown-menubar button:active{
background-color: none; background-color: none;
@ -362,13 +350,13 @@ svg{
} }
.btn-green{ .btn-green{
color:#fff; color:#fff;
background: #13a64f; background: #326cbf;
border-color:#13a64f; border-color:#326cbf;
} }
.btn-green:hover{ .btn-green:hover{
color:#fff; color:#fff;
background: #ea8937; background: #D933A2;
border-color:#ea8937; border-color:#D933A2;
} }
.card-header{ .card-header{
padding: 1rem 1rem!important; padding: 1rem 1rem!important;
@ -453,7 +441,7 @@ p .font-medium{
font-weight: 700; font-weight: 700;
font-size: 16px; font-size: 16px;
color: #000; color: #000;
width: 400px; width: 300px;
} }
.contact-info{ .contact-info{
display: inline-block; display: inline-block;
@ -468,4 +456,26 @@ p .font-medium{
/* admin table css */ /* admin table css */
.admin-table img{ .admin-table img{
width: 200px !important; width: 200px !important;
} }
.sidebar-icon .menu-title{
display: inline-flex;
align-items: center;
justify-content: space-between;
padding-right: 20px;
}
.badge.notbooked{
background: #1F8D60;
font-size: 1rem;
padding: 0.6rem 1rem;
}
.badge.booked{
background: #C31521;
font-size: 1rem;
padding: 0.6rem 1rem;
}
.contact-info h2{
font-weight: bold;
font-size: 28px;
color: #326CBF;
margin-bottom: 1rem;
}

@ -140,7 +140,7 @@ h2{
opacity: 0; opacity: 0;
transform: translate3d(0, 30px, 0); transform: translate3d(0, 30px, 0);
} }
to { to {
opacity: 1; opacity: 1;
transform: none; transform: none;
@ -248,7 +248,7 @@ Responsive Codes
.top-links{ .top-links{
display: flex; display: flex;
align-items: center; align-items: center;
gap: 0.8rem; gap: 1.8rem;
color: #000000; color: #000000;
margin-right: 0; margin-right: 0;
} }
@ -261,7 +261,17 @@ Responsive Codes
.top-socials a{ .top-socials a{
font-size: 24px; font-size: 24px;
} }
.top-links a, .top-links a{
color: #326CBF;
font-weight: bold;
font-size: 16px;
line-height: 24px;
text-decoration: none;
}
.top-links a:hover {
text-decoration: underline;
color: #d933a2;
}
.top-links h2{ .top-links h2{
text-decoration: none; text-decoration: none;
font-weight: 500; font-weight: 500;
@ -282,7 +292,7 @@ Responsive Codes
padding: 3rem 6rem; padding: 3rem 6rem;
position: absolute; position: absolute;
top: 20%; top: 20%;
width: 60%; width: 50%;
} }
.slider-content h2{ .slider-content h2{
font-weight: 700; font-weight: 700;
@ -303,8 +313,8 @@ Responsive Codes
margin-bottom: 3rem; margin-bottom: 3rem;
} }
.slider-content p, .slider-content p,
.slider-content h2, .slider-content h2,
.slideDown, .slideDown,
.slideUp{ .slideUp{
position: relative; position: relative;
opacity: 0; opacity: 0;
@ -328,7 +338,7 @@ Responsive Codes
font-weight: 900; font-weight: 900;
font-family: "Font Awesome 5 Free"; font-family: "Font Awesome 5 Free";
position: absolute; position: absolute;
opacity: 0; opacity: 0;
top: 10px; top: 10px;
right: -20px; right: -20px;
transition: 0.5s; transition: 0.5s;
@ -411,7 +421,7 @@ Responsive Codes
font-size: 20px; font-size: 20px;
line-height: 29px; line-height: 29px;
text-align: center; text-align: center;
color: #326CBF; color: #326CBF;
margin-bottom: 0; margin-bottom: 0;
} }
.high-visa, .high-visa,
@ -451,7 +461,9 @@ Responsive Codes
.faq-section, .faq-section,
.student-visa-section, .student-visa-section,
.services-page-section, .services-page-section,
.appointment-section{ .appointment-section,
.enquiry-form-section,
.privacy-policy-section{
padding: 3rem 6rem; padding: 3rem 6rem;
} }
.services-section .row, .services-section .row,
@ -686,7 +698,7 @@ Responsive Codes
.service-page-card{ .service-page-card{
background: #FFFFFF; background: #FFFFFF;
box-shadow: 0px 4px 18px rgba(121, 121, 121, 0.05); box-shadow: 0px 4px 18px rgba(121, 121, 121, 0.05);
border-radius: 12px; border-radius: 12px;
transition: .4s; transition: .4s;
} }
.service-page-card{ .service-page-card{
@ -758,7 +770,7 @@ Responsive Codes
.mr-3 { .mr-3 {
margin-right: 30px; margin-right: 30px;
} }
.dinline { .dinline {
display: inline-block; display: inline-block;
} }
@ -992,9 +1004,8 @@ Responsive Codes
color: #E22899; color: #E22899;
font-family: FontAwesome, sans-serif; font-family: FontAwesome, sans-serif;
display: inline-block; display: inline-block;
margin-right: 0.5em; margin-right: 0.4em;
margin-left: -1.3em; margin-left: -1.3em;
width: 1.3em;
} }
.visa-display-section{ .visa-display-section{
margin-top: 40px; margin-top: 40px;
@ -1066,14 +1077,18 @@ Responsive Codes
line-height: 2.6rem; line-height: 2.6rem;
color: #FFFFFF; color: #FFFFFF;
} }
.form-sec .form-control::placeholder{ .form-sec .form-control::placeholder,
.enquiry-form-section .form-control::placeholder,
.enquiry-form-section .form-select{
font-weight: 400; font-weight: 400;
font-size: 14px; font-size: 14px;
line-height: 26px; line-height: 26px;
color: #7B8792; color: #7B8792;
} }
.form-sec .form-control{ .form-sec .form-control,
background: #FFFFFF; .enquiry-form-row .form-control,
.enquiry-form-row .form-select{
background-color: #FFFFFF;
border: 1px solid #B1B1B1; border: 1px solid #B1B1B1;
border-radius: 6px; border-radius: 6px;
padding: 10px; padding: 10px;
@ -1098,11 +1113,17 @@ Responsive Codes
} }
.form-sec label{ .form-sec label{
margin-bottom: 8px; margin-bottom: 8px;
font-weight: 400; font-weight: 400;
font-size: 16px; font-size: 16px;
line-height: 28px; line-height: 28px;
color: #0A2849; color: #0A2849;
} }
.enquiry-form-row label{
margin-bottom: 8px;
font-weight: 400;
font-size: 16px;
line-height: 28px;
}
.contact-form .row, .contact-form .row,
.visa-display-section .row{ .visa-display-section .row{
display: flex; display: flex;
@ -1289,8 +1310,7 @@ Responsive Codes
/* blogs page css */ /* blogs page css */
.article-card{ .article-card{
display: flex; display: flex;
/* align-items: center; */ gap: 30px;
gap: 20px;
width: 100%; width: 100%;
} }
.related-articles{ .related-articles{
@ -1299,9 +1319,6 @@ Responsive Codes
gap: 30px; gap: 30px;
height: 100%; height: 100%;
} }
.article-img{
width: 500px;
}
.featured-article img, .featured-article img,
.article-img img{ .article-img img{
border-radius: 12px; border-radius: 12px;
@ -1344,7 +1361,7 @@ Responsive Codes
color: #FFFFFF; color: #FFFFFF;
text-decoration: none; text-decoration: none;
background: #E22899; background: #E22899;
border-radius: 5px; border-radius: 5px;
transition: .6s; transition: .6s;
} }
.featured-article a:hover, .featured-article a:hover,
@ -1428,9 +1445,6 @@ Responsive Codes
flex-direction: column; flex-direction: column;
gap: 20px; gap: 20px;
} }
.recent-card-img{
width: 300px;
}
.recent-card-content{ .recent-card-content{
display: flex; display: flex;
gap: 20px; gap: 20px;
@ -1527,6 +1541,8 @@ Responsive Codes
width: 360px; width: 360px;
} */ } */
.appointment-section .btn-appointment{ .appointment-section .btn-appointment{
display: flex;
align-items: center;
background-color: #E5F0FF; background-color: #E5F0FF;
text-decoration: none; text-decoration: none;
color: #000000; color: #000000;
@ -1534,8 +1550,10 @@ Responsive Codes
border-radius: 8px; border-radius: 8px;
margin-bottom: 15px; margin-bottom: 15px;
text-align: left; text-align: left;
font-size:20px; }
font-weight:bold; .appointment-section .btn-appointment h2{
font-size: 20px;
font-weight: bold;
} }
.appointment-section .appointment-pills .active{ .appointment-section .appointment-pills .active{
background-color: #326cbf!important; background-color: #326cbf!important;
@ -1622,7 +1640,6 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.available-dates{ .available-dates{
/* background: #f0f0f0; */ /* background: #f0f0f0; */
display: inline-block; display: inline-block;
text-align: center;
justify-content: center; justify-content: center;
color: #272626; color: #272626;
margin-top: 1rem; margin-top: 1rem;
@ -1633,11 +1650,11 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
border: 1px solid #e0ecfb; border: 1px solid #e0ecfb;
color:#1a60c5; color:#1a60c5;
padding: 10px 12px; padding: 10px 12px;
margin-left: 15px; margin: 6px;
} }
.available-dates button:nth-of-type(1){ /* .available-dates button:nth-of-type(1){
margin-left:0; margin-left:0;
} } */
.available-dates button, .appointment-section .modal-footer button{ .available-dates button, .appointment-section .modal-footer button{
transition: all 250ms ease-in-out; transition: all 250ms ease-in-out;
} }
@ -1657,11 +1674,12 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
pointer-events: all; pointer-events: all;
} }
table.lightgrey-weekends tbody td:nth-child(n+6) { table.lightgrey-weekends tbody td:nth-child(n+6) {
background-color: #f3f3f3; background-color: #f3f3f3 !important;
color: #d30000; color: #d30000;
} pointer-events: none !important;
}
.event-colourful { .event-colourful {
color: #bdbdbd; color: #d7d7d7 !important;
cursor: not-allowed; cursor: not-allowed;
} }
.event-colourful .zabuto-calendar__day{ .event-colourful .zabuto-calendar__day{
@ -1671,10 +1689,113 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
pointer-events: all !important; pointer-events: all !important;
color: #000000; color: #000000;
cursor: pointer; cursor: pointer;
box-shadow: 0 1px 5px rgb(0 0 0 / 20%), 0 2px 2px rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%) !important; background-color: #ecf4ff !important;
}
.event-clickable.active{
background-color: #27ab00 !important;
} }
/* appointment page css ends */ /* appointment page css ends */
/* enquiry page css starts */
.enquiry-from-btn{
padding: 15px 60px;
background: #326CBF;
color: #FFFFFF;
box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
border: none;
font-weight: 500;
font-size: 16px;
line-height: 22px;
border-radius: 6px;
margin-top: 35px;
}
.enquiry-from-btn:hover{
background-color: #E32394;
transition: background-color 1s ease-out 100ms;
}
.form-select .select-placeholder{
color: #000000;
}
.enquiry-form-row h3{
font-weight: 600;
color: #212529;
margin: 10px 0;
text-align: center;
font-size: 24px;
letter-spacing: 0.001em;
display: inline-block ;
}
.enquiry-form-row h3::after{
content: '';
border-bottom: 2px solid #212529;
margin: 0.5% 45%;
justify-content: center;
display: block;
}
.enquiry-form-section h2{
font-weight: 700;
text-align: center;
font-size: 36px;
line-height: 48px;
letter-spacing: 0.005em;
color: #326CBF;
}
.enquiry-form-section p{
text-align: center;
}
#spouse-married-date,
#spouse-academic,
#spouse-experience,
#spouse-salary,
#work-exp-detail,
#work-salary-mode{
display: none;
}
.married{
display: block !important;
}
.enquiry-form-section .form-control:focus,
.enquiry-form-section .form-select:focus{
box-shadow: none;
border-color: none;
}
.error{
color: red;
font-size: 14px;
line-height: 1.8rem;
}
/* enquiry page css ends */
/* privacy policy css starts */
.privacy-policy-section h1{
font-weight: 700;
text-align: center;
font-size: 36px;
line-height: 48px;
letter-spacing: 0.005em;
color: #326CBF;
margin-bottom: 1rem;
}
.privacy-policy-section ul li{
list-style: none;
color:#353030;
padding: 5px;
}
.privacy-policy-section ul li::before{
content: "\f058";
color: #326CBF;
font-family: FontAwesome;
display: inline-block;
margin-right: 0.6em;
margin-left: -1.3em;
width: 1.3em;
}
.definition-policy,
.personal-policy,
.contact-policy{
background: #eff2f4;
padding: 2rem;
margin-bottom: 40px;
}
/* privacy policy css ends */
/* Footer Css */ /* Footer Css */
.footer{ .footer{
background: #296AC7; background: #296AC7;
@ -1859,16 +1980,16 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
transition: all 200ms ease-in-out; transition: all 200ms ease-in-out;
} }
.fa-facebook:hover{ .fa-facebook:hover{
color: #d6249f; color: #A9C5ED;
} }
.fa-twitter:hover{ .fa-twitter:hover{
color: #d6249f; color: #A9C5ED;
} }
.fa-linkedin:hover{ .fa-linkedin:hover{
color: #d6249f; color: #A9C5ED;
} }
.fa-instagram:hover { .fa-instagram:hover {
color: #d6249f; color: #A9C5ED;
/* background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important; /* background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important;
background-clip: text; background-clip: text;
-webkit-background-clip: text; -webkit-background-clip: text;
@ -1916,6 +2037,9 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.displayBtn{ .displayBtn{
display: block; display: block;
} }
.displayEnqBtn{
display: inline-block;
}
/* Footer Css */ /* Footer Css */
/* mobile view css */ /* mobile view css */
@media only screen and (min-width: 320px) and (max-width: 480px) { @media only screen and (min-width: 320px) and (max-width: 480px) {
@ -1923,10 +2047,13 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
font-size: 28px; font-size: 28px;
line-height: 38px; line-height: 38px;
} }
h2 { h2,
.featured-article h2,
.blog-detail-desc h2,
.visa-content h3 {
font-weight: 600; font-weight: 600;
font-size: 22px; font-size: 22px;
line-height: 38px; line-height: 34px;
} }
#topbar{ #topbar{
padding: 0.5rem 0; padding: 0.5rem 0;
@ -1975,7 +2102,7 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
} }
.services-content h1, .services-content h1,
.why-us-desc h1, .why-us-desc h1,
.testimonials-desc h1, .testimonials-desc h1,
.blog-header h1, .blog-header h1,
.our-values-section h1, .our-values-section h1,
.studyabroad-banner-header h1, .studyabroad-banner-header h1,
@ -1990,18 +2117,18 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.about-icons-section{ .about-icons-section{
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
} }
.services-section, .services-section,
.blog-section, .blog-section,
.study-australia-desc, .study-australia-desc,
.study-sydney-section, .study-sydney-section,
.study-melbourne-section, .study-melbourne-section,
.study-detail-section, .study-detail-section,
.scholarship-section, .scholarship-section,
.student-visa-section, .student-visa-section,
.about-header-section, .about-header-section,
.why-et, .why-et,
.student-visa-section, .student-visa-section,
.blogs-section, .why-et, .blogs-section, .why-et,
.faq-section, .faq-section,
.why-us-section, .why-us-section,
.testimonials-section, .testimonials-section,
@ -2010,7 +2137,9 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.lets-chat-section, .lets-chat-section,
.blog-banner, .blog-banner,
.overseas-section, .overseas-section,
.services-page-section{ .services-page-section,
.enquiry-form-section,
.privacy-policy-section{
padding: 2rem; padding: 2rem;
} }
.contact-form-section, .contact-form-section,
@ -2171,7 +2300,7 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.why-us-img, .why-us-img,
.blog-header p, .blog-header p,
.lets-chat-section p, .lets-chat-section p,
.overseas-section p, .overseas-section p,
.why-et-header p, .why-et-header p,
.about-banner-header p{ .about-banner-header p{
padding: 0; padding: 0;
@ -2180,19 +2309,19 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.about-icons-section{ .about-icons-section{
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
} }
.services-section, .services-section,
.blog-section, .blog-section,
.study-australia-desc, .study-australia-desc,
.study-sydney-section, .study-sydney-section,
.study-melbourne-section, .study-melbourne-section,
.study-detail-section, .study-detail-section,
.scholarship-section, .scholarship-section,
.student-visa-section, .student-visa-section,
.about-header-section, .about-header-section,
.why-et, .why-et,
.student-visa-section, .student-visa-section,
.blogs-section, .why-et, .blogs-section, .why-et,
.blog-detail-section, .blog-detail-section,
.faq-section, .faq-section,
.why-us-section, .why-us-section,
.testimonials-section, .testimonials-section,
@ -2201,12 +2330,14 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.our-values-section, .our-values-section,
.blog-banner, .blog-banner,
.overseas-section, .overseas-section,
.services-page-section{ .services-page-section,
.enquiry-form-section,
.privacy-policy-section{
padding: 3rem; padding: 3rem;
} }
.services-content h1, .services-content h1,
.why-us-desc h1, .why-us-desc h1,
.testimonials-desc h1, .testimonials-desc h1,
.blog-header h1{ .blog-header h1{
font-size: 32px; font-size: 32px;
line-height: 48px; line-height: 48px;
@ -2273,19 +2404,19 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.about-icons-section{ .about-icons-section{
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
} }
.services-section, .services-section,
.blog-section, .blog-section,
.study-australia-desc, .study-australia-desc,
.study-sydney-section, .study-sydney-section,
.study-melbourne-section, .study-melbourne-section,
.study-detail-section, .study-detail-section,
.scholarship-section, .scholarship-section,
.student-visa-section, .student-visa-section,
.about-header-section, .about-header-section,
.why-et, .why-et,
.student-visa-section, .student-visa-section,
.blogs-section, .why-et, .blogs-section, .why-et,
.blog-detail-section, .blog-detail-section,
.faq-section, .faq-section,
.why-us-section, .why-us-section,
.testimonials-section, .testimonials-section,
@ -2293,7 +2424,9 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.lets-chat-section, .lets-chat-section,
.our-values-section, .our-values-section,
.overseas-section, .overseas-section,
.services-page-section{ .services-page-section,
.enquiry-form-section,
.privacy-policy-section{
padding: 3rem; padding: 3rem;
} }
.why-us-section::before, .why-us-section::before,
@ -2328,7 +2461,7 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.contact-form .row .col-md-8{ .contact-form .row .col-md-8{
width: 100%; width: 100%;
} }
.overseas-section p, .overseas-section p,
.why-et-header p, .why-et-header p,
.about-banner-header p, .about-banner-header p,
.lets-chat-section p{ .lets-chat-section p{
@ -2399,4 +2532,4 @@ table.lightgrey-weekends tbody td:nth-child(n+6) {
.review-card{ .review-card{
min-height: 37pc; min-height: 37pc;
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

@ -0,0 +1,12 @@
<svg width="66" height="66" viewBox="0 0 66 66" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M51.0779 47.1385C51.0779 47.1385 43.2868 54.45 32.9846 54.45C22.6824 54.45 14.8965 47.1385 14.8965 47.1385C14.8965 47.1385 13.4476 40.1827 17.191 28.1738C19.1658 21.8419 47.2674 21.1974 49.4691 26.7352C53.2126 36.135 51.0779 47.1385 51.0779 47.1385Z" fill="#C31780"/>
<path d="M14.8963 47.1385L17.3661 49.1185C17.3661 49.1185 17.3455 45.1997 18.5572 41.5439C19.011 40.1775 20.63 39.6052 21.8469 40.3735L31.2777 46.2877C31.7947 46.6114 32.3914 46.7852 33.0014 46.7898C33.6113 46.7943 34.2106 46.6294 34.7324 46.3135C39.2389 43.5806 50.9952 36.4289 51.5314 35.9906C51.5314 35.9906 51.5314 35.1089 51.3097 33.9849L14.7622 34.0313L14.8963 47.1385Z" fill="#AA2376"/>
<path d="M63.3238 26.828L34.0363 44.2716C33.3969 44.6531 32.5977 44.6531 31.9531 44.2716L2.67596 26.828C1.86127 26.3433 1.86127 25.1625 2.67596 24.6778L31.9635 7.23423C32.6028 6.85267 33.4021 6.85267 34.0466 7.23423L63.3341 24.6778C64.1436 25.1625 64.1436 26.3433 63.3238 26.828Z" fill="#E22899"/>
<path d="M33.0206 42.9928C33.0155 42.9928 33.0052 42.998 33 42.998C32.9175 42.998 32.835 42.9773 32.7628 42.9309L2.15533 25.2863C2.15533 25.2863 2.00579 25.5698 2.15533 26.0803C2.31001 26.5908 2.5472 26.7558 2.67611 26.8331L31.9636 44.2767C32.2833 44.4675 32.6442 44.5655 33.0052 44.5655H33.0258V42.9928H33.0206Z" fill="#F266BB"/>
<path d="M32.9998 42.9928C33.0049 42.9928 33.0153 42.998 33.0204 42.998C33.1029 42.998 33.1854 42.9773 33.2576 42.9309L63.8651 25.2863C63.8651 25.2863 64.0146 25.5698 63.8651 26.0803C63.7104 26.5908 63.4732 26.7558 63.3443 26.8331L34.0568 44.2767C33.7371 44.4675 33.3762 44.5655 33.0153 44.5655H32.9946V42.9928H32.9998Z" fill="#C41780"/>
<path d="M18.2788 36.1247L18.4438 34.6758C18.4438 34.6758 31.0818 27.8025 32.3296 27.0806C33.5774 26.3587 34.8871 25.5544 35.4697 24.9098C36.501 23.7755 35.7585 23.0639 35.7585 23.0639C35.7585 23.0639 34.9438 24.3839 32.9999 24.1519C31.8862 24.0178 30.4372 23.1155 30.1949 22.6926C29.9526 22.2698 15.9276 32.9536 15.9276 32.9536L15.8296 34.6706L18.2788 36.1247Z" fill="#AA2376"/>
<path d="M35.7585 23.069C34.4075 24.9562 32.1182 24.1312 32.1182 24.1312C32.1182 24.1312 24.9458 27.5704 24.6777 27.0497C24.4096 26.5289 30.6022 23.3423 30.6022 23.3423C30.6022 23.3423 30.2568 22.0739 30.2929 21.5325C30.2929 21.5325 19.0935 28.6584 14.8911 31.0561C12.6894 32.3142 12.2202 33.5001 12.2253 35.1708C12.2253 35.9029 12.2357 38.28 12.246 39.6979C12.246 39.9609 12.1325 40.2084 11.9314 40.3734C11.627 40.6229 11.3816 40.9369 11.2131 41.2926C11.0446 41.6484 10.9571 42.0371 10.9569 42.4308C10.9569 43.2197 11.3024 43.9261 11.8489 44.4159C12.1428 44.6789 12.081 45.2461 12.1068 45.6122C12.1583 46.3134 12.1068 46.6331 11.818 47.2828C11.5344 47.917 11.2714 48.5667 11.091 49.237C10.9518 49.7526 10.8589 50.2837 10.7661 50.8097C10.1525 54.3314 9.8741 58.0954 8.24988 61.3336C8.21929 61.3941 8.20103 61.4601 8.19615 61.5277C8.19127 61.5953 8.19988 61.6633 8.22146 61.7275C8.24305 61.7918 8.27719 61.8512 8.3219 61.9021C8.36661 61.9531 8.421 61.9947 8.48191 62.0245C8.60438 62.0863 8.74633 62.0971 8.87675 62.0546C9.00717 62.0121 9.11548 61.9197 9.17801 61.7976C10.0236 60.1115 10.4619 58.2656 10.8228 56.4351C10.8022 58.0903 10.7919 59.7609 10.7352 61.5656C10.7249 61.9162 10.6991 62.6226 11.0188 62.7773C12.2202 63.36 12.2202 61.5656 12.2202 61.5656C12.2202 61.5656 12.2357 63.1795 13.8702 63.1795C15.5047 63.1795 15.6233 61.5656 15.6233 61.5656C15.6233 61.5656 15.7419 63.0454 16.5824 62.9733C16.9227 62.9423 17.3713 62.7361 17.2114 60.9675C17.0516 59.204 16.6546 52.8825 16.4844 50.8818C16.2472 48.1129 15.3397 46.4681 15.1541 45.4884C15.0871 45.1172 15.0819 44.7304 15.3758 44.4881C15.6749 44.243 15.9171 43.9357 16.0855 43.5875C16.2538 43.2394 16.3443 42.8587 16.3507 42.4721C16.3571 42.0854 16.2792 41.702 16.1224 41.3485C15.9656 40.9949 15.7337 40.6798 15.4428 40.425C15.3394 40.3346 15.2585 40.2214 15.2066 40.0943C15.1547 39.9672 15.1332 39.8297 15.1438 39.6928C15.2418 38.3573 15.35 36.4186 15.4377 35.97C15.8193 33.9539 16.8144 33.5929 17.8354 32.9948C18.8563 32.3915 33.6444 25.6781 34.5055 25.1058C36.0988 24.0384 35.7585 23.069 35.7585 23.069Z" fill="#E2A610"/>
<path d="M35.7588 23.069C34.4852 24.8686 31.8401 24.0642 31.8401 24.0642C31.8401 24.0642 25.0802 27.06 25.5288 26.5186C25.9722 25.9772 30.6026 23.3423 30.6026 23.3423C30.6026 23.3423 30.2571 22.0739 30.2932 21.5325C30.2932 21.5325 18.8979 28.117 14.479 31.2829C13.3394 32.1028 11.9266 33.4434 13.0765 34.7789C13.6076 35.3925 14.6337 35.5214 15.2885 35.0367C15.6855 34.7479 15.9949 34.3251 16.3455 33.99C16.7787 33.5672 17.3046 33.299 17.8202 32.9948C18.8412 32.3915 33.6293 25.6781 34.4904 25.1058C36.0991 24.0384 35.7588 23.069 35.7588 23.069Z" fill="#FFCA28"/>
<path d="M13.4628 47.3653C12.7822 47.3653 12.3232 47.3086 11.9056 47.2106C11.8311 47.1936 11.7652 47.1504 11.7197 47.0889C11.6743 47.0274 11.6525 46.9517 11.6581 46.8755L11.7922 44.9058C11.8076 44.7047 11.9984 44.5655 12.1943 44.6222C12.6584 44.7563 13.5865 44.8903 15.1025 44.5706C15.2881 44.5294 15.4737 44.6583 15.4943 44.8491L15.7006 46.8084C15.7161 46.9683 15.6129 47.1178 15.4582 47.1539C14.6693 47.3344 14.097 47.3653 13.4628 47.3653Z" fill="#9E740B"/>
<path d="M51.0777 47.1385C51.0777 47.1385 51.9904 42.3741 51.6243 37.3055C51.5624 36.4496 51.0365 35.7122 50.6291 38.708C50.3971 40.425 49.8918 45.5658 49.0307 48.7781C50.3455 47.8294 51.0777 47.1385 51.0777 47.1385ZM33.8919 18.9699C34.2683 19.0885 34.6138 19.3772 34.7118 19.7639C34.8407 20.2796 34.5158 20.7952 34.1652 21.1974C33.4794 21.9863 32.5358 22.6772 31.4891 22.6411C31.1436 22.6308 30.7724 22.5174 30.561 22.2441C30.4115 22.0533 30.3599 21.8058 30.3444 21.5635C30.2516 19.7949 32.2522 18.4542 33.8919 18.9699Z" fill="#FF55BC"/>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

@ -71,34 +71,33 @@
<div class="row gx-5"> <div class="row gx-5">
<div class="col-md-6"> <div class="col-md-6">
<div class="values-left"> <div class="values-left">
<p> <p id="values-text">
We work with you to turn your plan to study overseas into a launch pad for professional success and personal growth. At ET Education, we prioritise transparent communication, fair pricing, and simplified procedures to ensure our students and clients have a stress-free experience as they work towards their educational and immigration aspirations.
ET Education combines experience and technology to help you make the most informed decision possible.
</p> </p>
<div class="values-img"> <div class="values-img">
<img src="{{url('frontend/images/about/tranprancy.jpg')}}" class="img-fluid" id="values-img" alt=""> <img src="{{url('frontend/images/about/tranprancy.jpg')}}" class="w-100" id="values-img" alt="">
</div> </div>
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="values-lists"> <div class="values-lists">
<a onclick="changeImg('{{url('frontend/images/about/tranprancy.jpg')}}','{{1}}')" id="values-link{{1}}" class="link-active"> <a onclick="changeImg('{{url('frontend/images/about/tranprancy.jpg')}}','At ET Education, we prioritise transparent communication, fair pricing, and simplified procedures to ensure our students and clients have a stress-free experience as they work towards their educational and immigration aspirations.','{{1}}')" id="values-link{{1}}" class="link-active">
<h2>Transparency</h2> <h2>Transparency</h2>
</a> </a>
<a onclick="changeImg('{{url('frontend/images/about/Commitment.jpg')}}','{{2}}')" id="values-link{{2}}"> <a onclick="changeImg('{{url('frontend/images/about/Commitment.jpg')}}','We are committed to providing exceptional education and visa services to students. With a team of experienced professionals, they ensure personalised guidance to help students achieve their academic and career goals.','{{2}}')" id="values-link{{2}}">
<h2>Commitment</h2> <h2>Commitment</h2>
</a> </a>
<a onclick="changeImg('{{url('frontend/images/about/professionlaiosn-1.jpg')}}','{{3}}')" id="values-link{{3}}"> <a onclick="changeImg('{{url('frontend/images/about/professionlaiosn-1.jpg')}}','We work with you to turn your plan to study overseas into a launch pad for professional success and personal growth. ET Education combines experience and technology to help you make the most informed decision possible.','{{3}}')" id="values-link{{3}}">
<h2>Professionalism</h2> <h2>Professionalism</h2>
</a> </a>
<a onclick="changeImg('{{url('frontend/images/about/realiability.jpg')}}','{{4}}')" id="values-link{{4}}"> <a onclick="changeImg('{{url('frontend/images/about/realiability.jpg')}}','We are a reliable choice for students seeking assistance with education and visa services.  Our commitment to ethical and transparent practices, combined with expertise and experience, ensures that students can trust us to provide high-quality support throughout their journey.','{{4}}')" id="values-link{{4}}">
<h2>Reliability</h2> <h2>Reliability</h2>
</a> </a>
<a onclick="changeImg('{{url('frontend/images/about/Integrity.jpg')}}','{{5}}')" id="values-link{{5}}"> <a onclick="changeImg('{{url('frontend/images/about/Integrity.jpg')}}','We believe in conducting ourselves ethically and having integrity in every aspect of our service. We believe in complete transparency in our communication, are committed to our student’s needs, and strive to achieve the best possible outcome in our every endeavour.','{{5}}')" id="values-link{{5}}">
<h2>Integrity</h2> <h2>Integrity</h2>
</a> </a>
<a onclick="changeImg('{{url('frontend/images/about/trusthworthy.jpg')}}','{{6}}')" id="values-link{{6}}"> <a onclick="changeImg('{{url('frontend/images/about/trusthworthy.jpg')}}','At ET Education, we continuously strive to provide credible and trustworthy counselling to students worldwide to help them further their academic and professional growth in Australia. And in doing so, we always keep our customer’s welfare and satisfaction at the centre.','{{6}}')" id="values-link{{6}}">
<h2>Trustworthy</h2> <h2>Trustworthy</h2>
</a> </a>
</div> </div>
</div> </div>
@ -114,17 +113,19 @@
@endsection @endsection
@section('script') @section('script')
<script> <script>
function changeImg(img, id){ function changeImg(img, para, id){
if ($('.link-active').length > 0) { if ($('.link-active').length > 0) {
pre_id = $('.link-active')[0]['id']; pre_id = $('.link-active')[0]['id'];
myId = document.getElementById(pre_id); myId = document.getElementById(pre_id);
myId.classList.remove("link-active"); myId.classList.remove("link-active");
} }
var link = document.getElementById("values-link"+ id); var link = document.getElementById("values-link"+ id);
link.classList.add("link-active") link.classList.add("link-active")
var image = document.getElementById('values-img'); var image = document.getElementById('values-img');
image.src=img var paragraph = document.getElementById('values-text');
image.src=img;
paragraph.innerHTML=para;
} }
</script> </script>
@endsection @endsection

@ -13,45 +13,44 @@
</div><!-- /.container-fluid --> </div><!-- /.container-fluid -->
</section> </section>
<!-- Main content -->
<section class="content"> <section class="content">
<div class="container-fluid"> <div class="container-fluid">
<!-- SELECT2 EXAMPLE --> <!-- SELECT2 EXAMPLE -->
<div class="card card-default"> <div class="card card-default">
<div class="card-header"> <div class="card-header">
<h3 class="card-title">Create AboutUs</h3> <h3 class="card-title">Create AboutUs</h3>
<a href="{{url('admin/about_us')}}" class="back-button btn-green">List</a> <a href="{{ url('admin/about_us') }}" class="back-button btn-green">List</a>
</div> </div>
<div class="card-body"> <div class="card-body">
@include('success.success') @include('success.success')
@include('errors.error') @include('errors.error')
{!! Form::open(['url' => '/admin/about_us', 'class' => 'form-horizontal', 'method'=> 'POST','files' => true]) !!} {!! Form::open(['url' => '/admin/about_us', 'class' => 'form-horizontal', 'method' => 'POST', 'files' => true]) !!}
<div class="row"> <div class="row">
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group"> <div class="form-group">
<label>Image <span style="color: red";> * </span> </label> <label>Image <span style="color: red";> * </span> </label>
<input type="file" class="form-control" name="image"> <input type="file" class="form-control" name="image">
</div> </div>
</div> </div>
<div class="col-md-12" > <div class="col-md-12">
<div class="form-group" > <div class="form-group">
<label>Top Description <span style="color: red";> * </span></label> <label>Top Description <span style="color: red";> * </span></label>
<textarea name="description" id="body" rows="5" style="height: 658px;">{{old('description')}}</textarea> <textarea name="description" id="body" rows="5" style="height: 658px;">{{ old('description') }}</textarea>
</div> </div>
</div> </div>
<div class="col-md-12" > <div class="col-md-12">
<div class="form-group" > <div class="form-group">
<label>Middle Description <span style="color: red";> * </span></label> <label>Middle Description <span style="color: red";> * </span></label>
<textarea name="sub_description" id="body1" rows="5">{{old('sub_description')}}</textarea> <textarea name="sub_description" id="body1" rows="5">{{ old('sub_description') }}</textarea>
</div> </div>
</div> </div>
<div class="col-md-12" > <div class="col-md-12">
<div class="form-group" > <div class="form-group">
<label>Bottom Description <span style="color: red";> * </span> </label> <label>Bottom Description <span style="color: red";> * </span> </label>
<textarea name="bottom_description" id="body2" rows="5" >{{old('bottom_description')}} <textarea name="bottom_description" id="body2" rows="5">{{ old('bottom_description') }}
</textarea> </textarea>
</div> </div>
</div> </div>
@ -59,26 +58,28 @@
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group"> <div class="form-group">
<label>Seo Title</label> <label>Seo Title</label>
<input type="text" class="form-control" id="inputPassword3" name="seo_title" value="{{old('seo_title')}}"> <input type="text" class="form-control" id="inputPassword3" name="seo_title"
value="{{ old('seo_title') }}">
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group"> <div class="form-group">
<label> Keyword <span style="color: red";> * </span> </label> <label> Keyword <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="keyword" value="{{old('keyword')}}" required> <input type="text" class="form-control" id="inputPassword3" name="keyword"
value="{{ old('keyword') }}" required>
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group"> <div class="form-group">
<label>Seo Description </label> <label>Seo Description </label>
<textarea id="body3" name="seo_description">{{old('seo_description')}}</textarea> <textarea id="body3" name="seo_description">{{ old('seo_description') }}</textarea>
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group"> <div class="form-group">
<label>Meta Keyword</label> <label>Meta Keyword</label>
<textarea id="body4" name="meta_keyword">{{old('meta_keyword')}}</textarea> <textarea id="body4" name="meta_keyword">{{ old('meta_keyword') }}</textarea>
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
@ -86,8 +87,10 @@
<label>Status <span style="color: red";> * </span> </label> <label>Status <span style="color: red";> * </span> </label>
<select name="status" class="form-control" id="type" required> <select name="status" class="form-control" id="type" required>
<option value="" selected disabled>Please select Status</option> <option value="" selected disabled>Please select Status</option>
@foreach(config('custom.status') as $in => $val) @foreach (config('custom.status') as $in => $val)
<option value="{{$in}}" {{(old('status')==$in) ? 'selected':''}}>{{$val}}</option> <option value="{{ $in }}"
{{ old('status') == $in ? 'selected' : '' }}>
{{ $val }}</option>
@endforeach @endforeach
</select> </select>
@ -109,48 +112,39 @@
@endsection @endsection
@section('script') @section('script')
<script> <script>
ClassicEditor
.create( document.querySelector( '#body' ),
{
ckfinder: {
uploadUrl: '{{route('image.upload').'?_token='.csrf_token()}}',
}
})
ClassicEditor ClassicEditor
.create( document.querySelector( '#body1' ), .create(document.querySelector('#body'), {
{ ckfinder: {
ckfinder: { uploadUrl: '{{ route('image.upload') . '?_token=' . csrf_token() }}',
uploadUrl: '{{route('image.upload').'?_token='.csrf_token()}}', }
}
}) })
ClassicEditor ClassicEditor
.create( document.querySelector( '#body2' ), .create(document.querySelector('#body1'), {
{ ckfinder: {
ckfinder: { uploadUrl: '{{ route('image.upload') . '?_token=' . csrf_token() }}',
uploadUrl: '{{route('image.upload').'?_token='.csrf_token()}}', } }
}) })
ClassicEditor ClassicEditor
.create( document.querySelector( '#body3' ), .create(document.querySelector('#body2'), {
{ ckfinder: {
ckfinder: { uploadUrl: '{{ route('image.upload') . '?_token=' . csrf_token() }}',
uploadUrl: '{{route('image.upload').'?_token='.csrf_token()}}', } }
}) })
ClassicEditor ClassicEditor
.create( document.querySelector( '#body4' ), .create(document.querySelector('#body3'), {
{ ckfinder: {
ckfinder: { uploadUrl: '{{ route('image.upload') . '?_token=' . csrf_token() }}',
uploadUrl: '{{route('image.upload').'?_token='.csrf_token()}}', } }
}) })
.catch( error => ClassicEditor
{ console.error( error ); .create(document.querySelector('#body4'), {
} ckfinder: {
); uploadUrl: '{{ route('image.upload') . '?_token=' . csrf_token() }}',
}
})
.catch(error => {
console.error(error);
});
</script> </script>
@endsection @endsection

@ -48,13 +48,13 @@
<div class="col-md-6" > <div class="col-md-6" >
<div class="form-group" > <div class="form-group" >
<label>Start Time <span style="color: red";> * </span></label> <label>Start Time <span style="color: red";> * </span></label>
<input type="text" name="start_time" class="form-control" value = "{{$appointment->start_time}}" required/> <input type="time" name="start_time" class="form-control" value = "{{$appointment->start_time}}" required/>
</div> </div>
</div> </div>
<div class="col-md-6" > <div class="col-md-6" >
<div class="form-group" > <div class="form-group" >
<label>End Time <span style="color: red";> * </span></label> <label>End Time <span style="color: red";> * </span></label>
<input type="text" name="end_time" class="form-control" value = "{{$appointment->end_time}}" required/> <input type="time" name="end_time" class="form-control" value = "{{$appointment->end_time}}" required/>
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">

@ -21,7 +21,7 @@
<div class="col-md-12"> <div class="col-md-12">
<div class="card"> <div class="card">
<div class="card-header"> <div class="card-header">
<h3 class="card-title">Appointments</h3> <h3 class="card-title">{{ $service }} Appointments</h3>
<div class="card-tools"> <div class="card-tools">
<a class="btn btn-green" href="{{url('admin/appointments/create')}}" role="button">Create</a> <a class="btn btn-green" href="{{url('admin/appointments/create')}}" role="button">Create</a>
</div> </div>
@ -35,19 +35,29 @@
<div class="row"> <div class="row">
<div class="col-md-4"> <div class="col-md-4">
<div class="input-group input-group-sm mb-3 table-search w-100"> <div class="input-group input-group-sm mb-3 table-search w-100">
<input type="search" name="date" class="form-control ds-input" placeholder="Date" aria-label="Small" aria-describedby="inputGroup-sizing-sm" onchange="filterList()"> <input type="date" name="date" value = "{{ $date ?? null }}" class="form-control ds-input" placeholder="Date" aria-label="Small" aria-describedby="inputGroup-sizing-sm" onchange="filterList()">
</div>
</div>
<div class="col-md-4">
<div class="input-group input-group-sm mb-3 table-search w-100">
<select name="is_booked" class="form-control ds-input" onchange="filterList()">
<option value="" {{ is_null($is_booked) ? 'selected' : '' }} disabled >Filter By Booking Status</option>
<option {{ $is_booked ? 'selected' : '' }} value="1">Booked</option>
<option {{ (!is_null($is_booked) && !$is_booked) ? 'selected' : '' }} value="2">Open</option>
</select>
</div> </div>
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
<div class="input-group input-group-sm mb-3 table-search w-100"> <div class="input-group input-group-sm mb-3 table-search w-100">
<select name="status" class="form-control ds-input" onchange="filterList()"> <select name="status" class="form-control ds-input" onchange="filterList()">
<option value="" disabled selected>Search By Status</option> <option value="" disabled selected>Filter By Status</option>
@foreach(config('custom.status') as $in => $val) @foreach(config('custom.status') as $in => $val)
<option value="{{$in}}">{{$val}}</option> <option value="{{$in}}" {{($status ==$in) ? 'selected':''}} >{{$val}}</option>
@endforeach @endforeach
</select> </select>
</div> </div>
</div> </div>
</div> </div>
</form> </form>
@ -71,12 +81,18 @@
<td class="text-center">{{$setting->date}}</td> <td class="text-center">{{$setting->date}}</td>
<td class="text-center">{{$setting->start_time}}</td> <td class="text-center">{{$setting->start_time}}</td>
<td class="text-center">{{$setting->end_time}}</td> <td class="text-center">{{$setting->end_time}}</td>
<td class="text-center">{{$setting->is_booked ? 'Booked' : 'Not Booked'}}</td> @if($setting->is_booked)
<td class="text-center"><span class="badge booked text-bg-secondary">Booked</span></td>
@else
<td class="text-center"><span class="badge notbooked text-bg-secondary">Open</span></td>
@endif
<td class="d-flex justify-content-center action-icons"> <td class="d-flex justify-content-center action-icons">
@if($setting->appointment_booking_detail()->count() > 0)
<a href="{{url('admin/appointments/'.$setting->id.'/view')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="view"> <a href="{{url('admin/appointments/'.$setting->id.'/view')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="view">
<i class="fa-solid fa-eye"></i> <i class="fa-solid fa-eye"></i>
</a> </a>
@endif
<a href="{{url('admin/appointments/'.$setting->id.'/edit')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="edit"> <a href="{{url('admin/appointments/'.$setting->id.'/edit')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="edit">
<i class="fas fa-pencil-alt"></i> <i class="fas fa-pencil-alt"></i>
</a> </a>

@ -1,157 +0,0 @@
@extends('admin.layouts.app')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Career</h1>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="card card-default">
<div class="card-header">
<h3 class="card-title">Create Career</h3>
<a href="{{url('admin/careers')}}" class="back-button">List</a>
</div>
<div class="card-body">
@include('success.success')
@include('errors.error')
{!! Form::open(['url' => '/admin/careers', 'class' => 'form-horizontal', 'method'=> 'POST','files' => true,'autocomplete' => 'OFF']) !!}
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Image <span style="color: red";> * </span> </label>
<input type="file" class="form-control" name="image" required>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Title <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="title" value="{{old('title')}}" required>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Sub Title <span style="color: red";> * </span></label>
<textarea name="sub_title" class="summernote_class" rows="5" required style="height: 658px;" >{{old('sub_title')}}</textarea>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Point Title <span style="color: red";> * </span> </label>
<textarea name="point_title" class="summernote_class" rows="5" required style="height: 658px;" >{{old('point_title')}}
</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Title</label>
<input type="text" class="form-control" id="inputPassword3" name="seo_title" value="{{old('seo_title')}}">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Keyword <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="keyword" value="{{old('keyword')}}" required>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Description </label>
<textarea class="summernote_class" name="seo_description">{{old('seo_description')}}</textarea>
{{-- <input type="text" class="form-control" id="inputPassword3" name="seo_description" >--}}
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Meta Keyword</label>
<textarea class="summernote_class" name="meta_keyword" >{{old('meta_keyword')}}</textarea>
</div>
</div>
</div>
<div class="row" id="point_dom">
<div class="col-md-6 rel-close" id="point_row_1">
<div class="dom-box">
<div class="add-points card">
<div class="form-group" id="point_g_1" >
<!-- <label for=""> Point Title <span style="color: red";> * </span></label> <br> -->
<!-- <input type="text" name="point_title" id="title1" placeholder="Title"> <br> -->
<div id="point1" class="point1" >
<label for="">Points <span style="color: red";> * </span> </label> <br>
<input type="text" class="point" name="points[]" placeholder="Points"> <br>
<button class="close-point" onclick="deletePoint(1)" type="button"><i class="fa fa-trash" aria-hidden="true"></i></button>
</div>
</div>
<button type="button" class="add-point-btn btn btn-primary" onclick="getPoint(1)">Add Points</button>
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Status <span style="color: red";> * </span> </label>
<select name="status" class="form-control" id="type" required>
<option value="" selected disabled>Please select Status</option>
@foreach(config('custom.status') as $in => $val)
<option value="{{$in}}" {{(old('status')==$in) ? 'selected':''}}>{{$val}}</option>
@endforeach
</select>
</div>
</div>
</div>
<div class="form-group row create-button">
<div class="col-sm-10 col-md-12">
<button type="submit" class="btn btn-primary">Create</button>
</div>
</div>
{!! Form::close() !!}
</div>
</div>
</div>
</section>
</div>
@endsection
@section('script')
<script>
$(document).ready(function() {
$('.summernote_class').summernote()
})
var point_count = 1;
function getPoint(count){
point_count = point_count +1;
debugger;
var html = '<div id="point'+point_count+'" class="point1">'+
'<input type="text" class="point" name="points[]" placeholder="Points"> <br>'+
'<button type="button" class="close-point" onclick="deletePoint('+point_count+')"><i class="fa fa-trash" aria-hidden="true"></i></button>'+
'</div>';
$('#point_g_1').append(html);
}
function deletePoint(count){
if($('.point').length > 1){
$('#point'+count).remove();
}
}
</script>
@endsection

@ -1,203 +0,0 @@
@extends('admin.layouts.app')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Career</h1>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="card card-default">
<div class="card-header">
<h3 class="card-title">Edit Career</h3>
<a href="{{url('admin/careers')}}" class="back-button">Back</a>
</div>
<div class="card-body">
@include('success.success')
@include('errors.error')
{!! Form::open(['url' => '/admin/careers/'.$about_us->id, 'class' => 'form-horizontal', 'method'=> 'POST','files' => true]) !!}
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Image</label>
<input type="file" class="form-control" name="image" >
<br>
<span>
<a href="{{url($about_us->image)}}" target="_blank">
<img src="{{url($about_us->image)}}" alt="" style="width: 100px">
</a>
</span>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Title <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="title" value="{{$about_us->title}}" required>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Sub Title <span style="color: red";> * </span></label>
<textarea name="sub_title" class="summernote_class" rows="5" required style="height: 658px;" >{{$about_us->sub_title}}</textarea>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Point Title <span style="color: red";> * </span> </label>
<textarea name="point_title" class="summernote_class" rows="5" required style="height: 658px;" >{{$about_us->point_title}}
</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Title</label>
<input type="text" class="form-control" id="inputPassword3" name="seo_title" value="{{$about_us->seo_title}}">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Keyword <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="keyword" value="{{$about_us->keyword}}">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Description</label>
<textarea class="summernote_class" name="seo_description">{{$about_us->seo_description}}</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Meta Keyword</label>
<textarea class="summernote_class" name="meta_keyword" >{{$about_us->meta_keyword}}</textarea>
</div>
</div>
</div>
@if($about_us->career_points->count() > 0)
<div class="row" id="point_dom">
<div class="col-md-6 rel-close" id="point_row_1">
<div class="dom-box">
<div class="add-points card">
<div class="form-group" id="point_g_1" >
<!-- <label for="">Point Title <span style="color: red";> * </span> </label> <br> -->
<!-- <input type="text" name="point_title" id="title1" placeholder="title" value="{{$about_us->point_title}}"> <br> -->
<label for="">Points <span style="color: red";> * </span> </label>
<br>
@foreach($about_us->career_points as $point)
<div id="point_old{{$point->id}}" class="point1" >
<input type="text" class="point" name="points[]" placeholder="Point" value="{{$point->point}}"> <br>
<input type="hidden" name="point_old_id[]" placeholder="points" value="{{$point->id}}"> <br>
<button class="close-point" onclick="deletePointPermanently({{$point->id}})" type="button"><i class="fa fa-trash" aria-hidden="true"></i></button>
</div>
@endforeach
</div>
<button type="button" class="add-point-btn btn btn-primary" onclick="getPoint(1)">Add Points</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Status <span style="color: red";> * </span> </label>
<select name="status" class="form-control" id="type" required>
<option value="" selected disabled>Please select Status</option>
@foreach(config('custom.status') as $in => $val)
<option value="{{$in}}" {{($about_us->status ==$in) ? 'selected':''}}>{{$val}}</option>
@endforeach
</select>
</div>
</div>
</div>
@endif
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Update</button>
</div>
</div>
{!! Form::close() !!}
</div>
</div>
</div>
</section>
</div>
@endsection
@section('script')
<script>
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$(document).ready(function() {
$('.summernote_class').summernote()
})
var point_count = 1;
function getPoint(count){
point_count = point_count +1;
var html = '<div id="point'+point_count+'" class="point1">'+
'<input type="text" class="point" name="points[]" placeholder="Point"> <br>'+
'<button type="button" class="close-point" onclick="deletePoint('+point_count+')"><i class="fa fa-trash" aria-hidden="true"></i></button>'+
'</div>';
$('#point_g_1').append(html);
}
function deletePoint(count){
if($('.point').length > 1){
$('#point'+count).remove();
}
}
function deletePointPermanently(id){
if($('.point').length > 1){
if (confirm("Are you sure Delete?")) {
$.ajax({
/* the route pointing to the post function */
type: 'GET',
url: Laravel.url +"/admin/blog_point/"+id,
dataType: 'json',
processData: false, // tell jQuery not to process the data
contentType: false,
/* remind that 'data' is the response of the AjaxController */
success: function (data) {
$('#point_old'+data.blog_point_id).remove();
},
error: function(error) {
}
});
}
return false;
}
}
</script>
@endsection

@ -1,116 +0,0 @@
@extends('admin.layouts.app')
@section('content')
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Career</h1>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h3 class="card-title">Career Table</h3>
<div class="card-tools">
<a class="btn btn-primary" href="{{url('admin/careers/create')}}" role="button">Create</a>
</div>
</div>
<!-- /.card-header -->
<div class="card-body">
@include('success.success')
@include('errors.error')
<form id="search" class="search-form">
<div class="row">
<div class="input-group input-group-sm mb-3 table-search col-md-3">
<input type="search" name="name" class="form-control ds-input" placeholder="Name" aria-label="Small" aria-describedby="inputGroup-sizing-sm" onchange="filterList()">
</div>
<div class="input-group input-group-sm mb-3 table-search col-md-3">
<select name="status" class="form-control ds-input" onchange="filterList()">
<option value="" disabled selected>Search By Status</option>
@foreach(config('custom.status') as $in => $val)
<option value="{{$in}}">{{$val}}</option>
@endforeach
</select>
</div>
</div>
</form>
<table class="table table-bordered">
<thead>
<tr>
<th style="width: 10px">S.N.</th>
<th class="text-center">Image</th>
<th class="text-center">Title</th>
<th class="text-center">Slug</th>
<th class="text-center">Status</th>
<th class="text-center">Action</th>
</tr>
</thead>
<tbody>
@foreach($settings as $setting)
<tr>
<th scope="row">{{$loop->iteration}}</th>
<td class="text-center">
<a href="{{url($setting->image)}}" target="_blank">
<img src="{{url($setting->image)}}" alt="" style="width: 100px;">
</a>
</td>
<td class="text-center">{!!$setting->title!!}</td>
<td class="text-center">{{$setting->slug}}</td>
<td class="text-center"> {{config('custom.status')[$setting->status]}}</td>
<td class="text-center">
<a class="btn btn-primary btn-sm" href="{{url('admin/careers/'.$setting->id)}}">
<i class="fas fa-folder">
</i>
View
</a>
<a class="btn btn-info btn-sm" href="{{url('admin/careers/'.$setting->id.'/edit')}}">
<i class="fas fa-pencil-alt">
</i>
Edit
</a>
<!-- {{-- <a class="btn btn-info btn-danger" href="{{url('admin/about_us/delete/'.$setting->id)}}" onclick="return confirm('Are you sure want to delete?')">--}}
{{-- <i class="fas fa-pencil-alt">
{{-- </i>
{{-- Delete
{{-- </a> -->
</td>
</tr>
@endforeach
</tbody>
</table>
<div class="pagination-page" style="margin-top: 30px;">
{!! $settings->links() !!}
</div>
</div>
</div>
<!-- /.card -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div><!-- /.container-fluid -->
</section>
<!-- /.content -->
</div>
@endsection

@ -1,148 +0,0 @@
@extends('admin.layouts.app')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Show Career</h1>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="card card-default">
<div class="card-header">
<h3 class="card-title">Show Career</h3>
</div>
<div class="card-body">
@include('success.success')
@include('errors.error')
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Image</label>
<br>
<span>
<a href="{{url($about_us->image)}}" target="_blank">
<img src="{{url($about_us->image)}}" alt="" style="width: 100px">
</a>
</span>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Title <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="title" value="{{$about_us->title}}" required>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Sub Title <span style="color: red";> * </span></label>
<textarea name="sub_title" class="summernote_class" rows="5" required style="height: 658px;" >{{$about_us->sub_title}}</textarea>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Point Title <span style="color: red";> * </span> </label>
<textarea name="point_title" class="summernote_class" rows="5" required style="height: 658px;" >{{$about_us->point_title}}
</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Title</label>
<input type="text" class="form-control" id="inputPassword3" name="seo_title" value="{{$about_us->seo_title}}" disabled>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Keyword </label>
<input type="text" class="form-control" id="inputPassword3" name="keyword" value="{{$about_us->keyword}}" disabled>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Description</label>
<textarea class="summernote_class" name="seo_description" disabled>{{$about_us->seo_description}}</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Meta Keyword</label>
<textarea class="summernote_class" name="meta_keyword" disabled >{{$about_us->meta_keyword}}</textarea>
</div>
</div>
</div>
@if($about_us->career_points)
<div class="row" id="point_dom">
<div class="col-md-6 rel-close" id="point_row_1">
<div class="dom-box">
<div class="add-points card">
<div class="form-group" id="point_g_1" >
<!-- <label for="">Title</label> <br> -->
<!-- <input type="text" name="point_title" id="title1" placeholder="title" value="{{$about_us->point_title}}" disabled> <br> -->
<label for="">Points</label>
<br>
@foreach($about_us->career_points as $point)
<div id="point_old{{$point->id}}" class="point1" >
<input type="text" class="point" name="point_old[]" placeholder="points" value="{{$point->point}}" disabled> <br>
<input type="hidden" name="point_old_id[]" placeholder="points" value="{{$point->id}}"> <br>
</div>
@endforeach
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Status</label>
<select name="status" class="form-control" id="type" required disabled>
<option value="" selected disabled>Please select Status</option>
@foreach(config('custom.status') as $in => $val)
<option value="{{$in}}" {{($about_us->status ==$in) ? 'selected':''}}>{{$val}}</option>
@endforeach
</select>
</div>
</div>
</div>
@endif
</div>
</div>
</div>
</section>
</div>
@endsection
@section('script')
<script>
$(document).ready(function() {
$('.summernote_class').summernote()
})
</script>
@endsection

@ -20,30 +20,27 @@
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<div class="card"> <div class="card">
<div class="card-header"> <div class="card-header d-flex flex-column">
<h3 class="card-title">Referrals</h3> <h3 class="card-title">Enquiries</h3>
<div class="card-tools">
</div> {{-- <a class="btn btn-green" href="{{url('admin/projects/create')}}" role="button">Create</a>--}}
</div>
</div>
<!-- /.card-header --> <!-- /.card-header -->
<div class="card-body"> <div class="card-body">
@include('success.success') @include('success.success')
@include('errors.error') @include('errors.error')
<form id="search" class="search-form"> <form id="search" class="search-form">
<div class="row"> <div class="row">
<div class="col-md-4"> <div class="col-md-4">
<div class="input-group input-group-sm mb-3 table-search w-100"> <div class="input-group input-group-sm mb-3 table-search w-100">
<input type="search" name="name" class="form-control ds-input" placeholder="Name" aria-label="Small" aria-describedby="inputGroup-sizing-sm" onchange="filterList()"> <input type="search" name="name" class="form-control ds-input" placeholder="Search by first name" aria-label="Small" aria-describedby="inputGroup-sizing-sm" onchange="filterList()">
</div> </div>
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
<div class="input-group input-group-sm mb-3 table-search w-100"> <div class="input-group input-group-sm mb-3 table-search w-100">
<select name="status" class="form-control ds-input" onchange="filterList()"> <input type="search" name="email" class="form-control ds-input" placeholder="Search by email" aria-label="Small" aria-describedby="inputGroup-sizing-sm" onchange="filterList()">
<option value="" disabled selected>Search By Status</option>
@foreach(config('custom.status') as $in => $val)
<option value="{{$in}}">{{$val}}</option>
@endforeach
</select>
</div> </div>
</div> </div>
</div> </div>
@ -53,40 +50,36 @@
<thead> <thead>
<tr> <tr>
<th style="width: 10px">S.N.</th> <th style="width: 10px">S.N.</th>
<th class="text-center">Participant Name</th> <th class="text-center">Full Name</th>
<th class="text-center">Mobile</th> <th class="text-center">Birth Date</th>
<th class="text-center">Suburb</th> <th class="text-center">Email</th>
<th class="text-center">Phone</th>
<th class="text-center">Action</th> <th class="text-center">Action</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach($settings as $setting) @foreach($enquiries as $enquiry)
<tr> <tr>
<th scope="row">{{$loop->iteration}}</th> <th scope="row">{{$loop->iteration}}</th>
<td class="text-center">{{$setting->name}}</td> <td class="text-center">{{$enquiry->first_name . ' ' .(!is_null($enquiry->middle_name) ? $enquiry->middle_name .' ' :''). $enquiry->last_name}}</td>
<td class="text-center">{{$setting->mobile_no}}</td> <td class="text-center">{{$enquiry->dob}}</td>
<td class="text-center">{{$setting->suburb}}</td> <td class="text-center">{{$enquiry->email}}</td>
<td class="text-center">{{$enquiry->phone}}</td>
<!-- <td class="text-center">
<a class="btn btn-primary btn-sm" href="{{url('admin/referrals/'.$setting->id.'/view')}}">
<i class="fas fa-folder">
</i>
View
</a>
</td> -->
<td class="d-flex justify-content-center action-icons"> <td class="d-flex justify-content-center action-icons">
<a href="{{url('admin/referrals/'.$setting->id.'/view')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="view"> <a href="{{url('admin/enquiries/'.$enquiry->id.'/view')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="view">
<i class="fa-solid fa-eye"></i> <i class="fa-solid fa-eye"></i>
</a> </a>
<a href="{{url('admin/enquiries/'.$enquiry->id.'/delete')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="delete" onclick="return confirm('Are you sure you want to delete?');">
<i class="fas fa-trash"></i>
</td> </td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>
</table> </table>
<div class="pagination-default" style="margin-top: 30px;"> <div class="pagination-default" style="margin-top: 10px;">
{!! $settings->links() !!} {!! $enquiries->links() !!}
</div> </div>
</div> </div>

@ -0,0 +1,22 @@
Sender details: <br><br>
Name: {{ $name }}<br>
Email: {{ $email }}<br>
Phone: {{ $phone }}<br>
Query Type: {{ $query_type }}<br>
Contact Type: {{ $contact_us_type }}<br>
InQuery for: {{$inQuery_for}}<br>
Subject: {{ $subject }}<br>
Message: {!! $msg !!}<br><br>
Thanks

@ -0,0 +1,165 @@
@extends('admin.layouts.app')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="card card-default">
<div class="card-header">
<h3 class="card-title">Enquiry</h3>
<a href="{{url('admin/enquiries')}}" class="btn btn-green back-button active" role="button" aria-pressed="true">List</a>
</div>
<div class="card-body">
@include('success.success')
@include('errors.error')
<div class="row">
<div class="col-md-6">
<ul class="contact-info">
<h2>Personal Details</h2>
<li class="d-flex">
<span>Full Name:</span>
<span>{{$enquiry->first_name . ' ' .(!is_null($enquiry->middle_name) ? $enquiry->middle_name .' ' :''). $enquiry->last_name}}</span>
</li>
<li class="d-flex">
<span>Date of Birth:</span>
<span>
{{$enquiry->dob}}
</span>
</li>
<li class="d-flex">
<span>Gender:</span>
<span>{{$enquiry->gender}} </span>
</li>
<li class="d-flex">
<span>Email:</span>
<span>{{$enquiry->email}}</span>
</li>
<li class="d-flex">
<span>Phone:</span>
<span>{{$enquiry->phone}}</span>
</li>
<li class="d-flex">
<span>Address:</span>
<span>{{$enquiry->address}} </span>
</li>
<li class="d-flex">
<span>Country of Birth:</span>
<span>{{$enquiry->cob}} </span>
</li>
<li class="d-flex">
<span>Highest Qualification:</span>
<span>{{$enquiry->highest_qualification}}</span>
</li>
<li class="d-flex">
<span>Stream:</span>
<span>
{{$enquiry->stream}}
</span>
</li>
<li class="d-flex">
<span>% or GPA:</span>
<span>{{$enquiry->gpa}} </span>
</li>
</ul>
</div>
<div class="col-md-6">
<ul class="contact-info">
<h2>Additional Details</h2>
<li class="d-flex">
<span>Graduate Year:</span>
<span>{{$enquiry->graduate_year}}</span>
</li>
<li class="d-flex">
<span>Gap after Studies:</span>
<span>{{$enquiry->gap}}</span>
</li>
<li class="d-flex">
<span>Current Status:</span>
<span>{{$enquiry->current_status}} </span>
</li>
<li class="d-flex">
<span>Work Experience Details:</span>
<span>{{$enquiry->work_experience == 'yes' ? 'Yes' : 'No'}} </span>
</li>
@if(!is_null($enquiry->work_experience_details))
<li class="d-flex">
<span>Work Experience:</span>
<span>{{$enquiry->work_experience_details}} </span>
</li>
@endif
@if(!is_null($enquiry->salary_mode))
<li class="d-flex">
<span>Salary Mode:</span>
<span>{{$enquiry->salary_mode}} </span>
</li>
@endif
<li class="d-flex">
<span>Test Score:</span>
<span>{{$enquiry->test_score}} </span>
</li>
<li class="d-flex">
<span>Marital Status:</span>
<span>{{$enquiry->marital_status}} </span>
</li>
@if(!is_null($enquiry->married_date))
<li class="d-flex">
<span>Married Date:</span>
<span>{{$enquiry->married_date}} </span>
</li>
@endif
@if(!is_null($enquiry->spouse_academics))
<li class="d-flex">
<span>Spouse Academics:</span>
<span>{{$enquiry->spouse_academics}} </span>
</li>
@endif
@if(!is_null($enquiry->spouse_work_experience))
<li class="d-flex">
<span>Spouse Work Experience:</span>
<span>{{$enquiry->spouse_work_experience}} </span>
</li>
@endif
@if(!is_null($enquiry->spouse_salary_mode))
<li class="d-flex">
<span>Spouse Salary Mode:</span>
<span>{{$enquiry->spouse_salary_mode}} </span>
</li>
@endif
<li class="d-flex">
<span>Immigration History:</span>
<span>{{$enquiry->immigration_history ?? 'N/A'}} </span>
</li>
<li class="d-flex">
<span>Desired Study Field:</span>
<span>{{$enquiry->desired_study_field ?? 'N/A'}} </span>
</li>
@if(!is_null($enquiry->desired_location))
<li class="d-flex">
<span>Desired Location:</span>
<span>{{config('custom.states')[$enquiry->desired_location]}} </span>
</li>
@endif
</ul>
</div>
</div>
{!! Form::close() !!}
</div>
</div>
</div>
</section>
</div>
@endsection

@ -12,7 +12,7 @@
<div class="col-sm-6"> <div class="col-sm-6">
<ol class="breadcrumb float-sm-right"> <ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item active">Agility Homecare Dashboard</li> <li class="breadcrumb-item active">ET Education | Visas Dashboard</li>
</ol> </ol>
</div><!-- /.col --> </div><!-- /.col -->
</div><!-- /.row --> </div><!-- /.row -->
@ -29,8 +29,8 @@
<!-- small box --> <!-- small box -->
<div class="small-box bg-info"> <div class="small-box bg-info">
<div class="inner"> <div class="inner">
<h3>{{$service-> count()}}</h3> <h3>{{ $visa_service->count() }}</h3>
<p>Service</p> <p>Visa Service</p>
</div> </div>
<div class="icon"> <div class="icon">
<i class="fa-solid fa-headset"></i> <i class="fa-solid fa-headset"></i>
@ -38,49 +38,50 @@
<a href="#" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a> <a href="#" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a>
</div> </div>
</div> </div>
<!-- ./col -->
<div class="col-lg-3 col-6"> <div class="col-lg-3 col-6">
<!-- small box --> <!-- small box -->
<div class="small-box bg-success"> <div class="small-box bg-info">
<div class="inner"> <div class="inner">
<h3>2</h3> <h3>{{ $education_service->count() }}</h3>
<p>Total Number of Referral</p> <p>Education Service</p>
</div> </div>
<div class="icon"> <div class="icon">
<i class="fa-solid fa-user-group"></i> <i class="fa-solid fa-headset"></i>
</div> </div>
<a href="referrals" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a> <a href="#" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a>
</div> </div>
</div> </div>
<!-- ./col --> <!-- ./col -->
<div class="col-lg-3 col-6"> <div class="col-lg-3 col-6">
<!-- small box --> <!-- small box -->
<div class="small-box bg-warning"> <div class="small-box bg-success">
<div class="inner"> <div class="inner">
<h3>{{$contact -> count()}}</h3> <h3>{{ $enquiry->count() }}</h3>
<p>Total Number of Contact</p> <p>Total Number of Enquiries</p>
</div> </div>
<div class="icon"> <div class="icon">
<i class="fa-solid fa-address-book"></i> <i class="fa-solid fa-user-group"></i>
</div> </div>
<a href="contacts" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a> <a href="enquiries" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a>
</div> </div>
</div> </div>
<!-- ./col --> <!-- ./col -->
<div class="col-lg-3 col-6"> <div class="col-lg-3 col-6">
<!-- small box --> <!-- small box -->
<div class="small-box bg-danger"> <div class="small-box bg-warning">
<div class="inner"> <div class="inner">
<h3>{{$subscription -> count()}}</h3> <h3>{{$contact->count()}}</h3>
<p>Number of Subscription</p> <p>Total Number of Contacts</p>
</div> </div>
<div class="icon"> <div class="icon">
<i class="fa-solid fa-hand-pointer"></i> <i class="fa-solid fa-address-book"></i>
</div> </div>
<a href="subscriptions" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a> <a href="contacts" class="small-box-footer">More info <i class="fas fa-arrow-circle-right"></i></a>
</div> </div>
</div> </div>
<!-- ./col --> <!-- ./col -->
<!-- ./col -->
</div> </div>
<!-- /.row --> <!-- /.row -->
<!-- Main row --> <!-- Main row -->

@ -6,32 +6,33 @@
<meta name="csrf-token" content="{{ csrf_token() }}"> <meta name="csrf-token" content="{{ csrf_token() }}">
<title>ET-Education | Admin Dashboard</title> <title>ET-Education | Admin Dashboard</title>
<link rel="icon" href="{{url('frontend/icons/favicon.ico')}}">
<!-- Google Font: Source Sans Pro --> <!-- Google Font: Source Sans Pro -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
{!! Html::style('admin/plugins/fontawesome-free/css/all.min.css') !!} {!! Html::style('admin/plugins/fontawesome-free/css/all.min.css') !!}
<!-- Ionicons --> <!-- Ionicons -->
{!! Html::style('admin/css/ionicons/2.0.1/css/ionicons.min.css') !!} {!! Html::style('admin/css/ionicons/2.0.1/css/ionicons.min.css') !!}
<!-- Tempusdominus Bootstrap 4 --> <!-- Tempusdominus Bootstrap 4 -->
{{-- <link rel="stylesheet" href="plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css">--}} {{-- <link rel="stylesheet" href="plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css">--}}
{!! Html::style('admin/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css') !!} {!! Html::style('admin/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css') !!}
<!-- iCheck --> <!-- iCheck -->
{{-- <link rel="stylesheet" href="plugins/icheck-bootstrap/icheck-bootstrap.min.css">--}} {{-- <link rel="stylesheet" href="plugins/icheck-bootstrap/icheck-bootstrap.min.css">--}}
{!! Html::style('admin/plugins/icheck-bootstrap/icheck-bootstrap.min.css') !!} {!! Html::style('admin/plugins/icheck-bootstrap/icheck-bootstrap.min.css') !!}
<!-- JQVMap --> <!-- JQVMap -->
{{-- <link rel="stylesheet" href="plugins/jqvmap/jqvmap.min.css">--}} {{-- <link rel="stylesheet" href="plugins/jqvmap/jqvmap.min.css">--}}
{!! Html::style('admin/plugins/jqvmap/jqvmap.min.css') !!} {!! Html::style('admin/plugins/jqvmap/jqvmap.min.css') !!}
<!-- Theme style --> <!-- Theme style -->
{{-- <link rel="stylesheet" href="dist/css/adminlte.min.css">--}} {{-- <link rel="stylesheet" href="dist/css/adminlte.min.css">--}}
{!! Html::style('admin/dist/css/adminlte.min.css') !!} {!! Html::style('admin/dist/css/adminlte.min.css') !!}
<!-- overlayScrollbars --> <!-- overlayScrollbars -->
{{-- <link rel="stylesheet" href="plugins/overlayScrollbars/css/OverlayScrollbars.min.css">--}} {{-- <link rel="stylesheet" href="plugins/overlayScrollbars/css/OverlayScrollbars.min.css">--}}
{!! Html::style('admin/plugins/overlayScrollbars/css/OverlayScrollbars.min.css') !!} {!! Html::style('admin/plugins/overlayScrollbars/css/OverlayScrollbars.min.css') !!}
<!-- Daterange picker --> <!-- Daterange picker -->
{{-- <link rel="stylesheet" href="plugins/daterangepicker/daterangepicker.css">--}} {{-- <link rel="stylesheet" href="plugins/daterangepicker/daterangepicker.css">--}}
{!! Html::style('admin/plugins/daterangepicker/daterangepicker.css') !!} {!! Html::style('admin/plugins/daterangepicker/daterangepicker.css') !!}
<!-- summernote --> <!-- summernote -->
{{-- <link rel="stylesheet" href="plugins/summernote/summernote-bs4.min.css">--}} {{-- <link rel="stylesheet" href="plugins/summernote/summernote-bs4.min.css">--}}
{!! Html::style('admin/plugins/summernote/summernote-bs4.min.css') !!} {!! Html::style('admin/plugins/summernote/summernote-bs4.min.css') !!}
{!! Html::style('admin/flatpickr/dist/flatpickr.min.css') !!} {!! Html::style('admin/flatpickr/dist/flatpickr.min.css') !!}
@ -190,6 +191,14 @@
relative_urls : false, relative_urls : false,
}); });
} }
$(document).ready(function(){
$("#myAppointmentBtn").click(function(){
$("#myAppointment").collapse("toggle");
var x = document.getElementById('icon-toggle-appointment');
x.classList.toggle("fa-angle-down");
});
});
// initTinymce(); // initTinymce();
</script> </script>

@ -36,7 +36,7 @@
</div> </div>
</li> </li>
</ul> </ul>
</nav> </nav>
<!-- /.navbar --> <!-- /.navbar -->
@ -102,9 +102,6 @@
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{url('admin/about_us')}}" class="nav-link {{(Request::segment(2) == 'about_us') ? 'active' : ''}}"> <a href="{{url('admin/about_us')}}" class="nav-link {{(Request::segment(2) == 'about_us') ? 'active' : ''}}">
<i class="fa-solid fa-users"></i> <i class="fa-solid fa-users"></i>
@ -116,7 +113,7 @@
<li class="nav-item"> <li class="nav-item">
<a href="{{url('admin/pages')}}" class="nav-link {{(Request::segment(2) == 'pages') ? 'active' : ''}}"> <a href="{{url('admin/pages')}}" class="nav-link {{(Request::segment(2) == 'pages') ? 'active' : ''}}">
<i class="fa fa-quote-right" aria-hidden="true"></i> <i class="fa-regular fa-folder-open"></i>
<p> <p>
Pages Pages
</p> </p>
@ -125,21 +122,36 @@
<li class="nav-item"> <li class="nav-item">
<a href="{{url('admin/blogs')}}" class="nav-link {{(Request::segment(2) == 'news_and_updates') ? 'active' : ''}}"> <a href="{{url('admin/blogs')}}" class="nav-link {{(Request::segment(2) == 'news_and_updates') ? 'active' : ''}}">
<i class="fa fa-quote-right" aria-hidden="true"></i> </i><i class="fa-solid fa-blog" aria-hidden="true"></i>
<p> <p>
Blogs Blogs
</p> </p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{url('admin/appointments')}}" class="nav-link {{(Request::segment(2) == 'appointments') ? 'active' : ''}}"> <a class="nav-link ">
<i class="fa fa-quote-right" aria-hidden="true"></i> <div class="sidebar-icon w-100" id="myAppointmentBtn">
<p> <i class="fa-regular fa-calendar-check"></i>
Appointments <span class="menu-title w-100">
</p> <p>Appointments</p>
<i class="fa-solid fa-angle-right" id="icon-toggle-appointment"></i></span>
</div>
</a> </a>
<div class="collapse" id="myAppointment">
<ul class="nav flex-column sub-menu">
<li class="nav-item">
<a class="nav-link {{(Request::segment(2) == 'education') ? 'active' : ''}}" href="{{url('admin/appointments/education')}}">
<i class="fa-solid fa-book-open-reader"></i> <p>Education Services</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{url('admin/appointments/visa')}}">
<i class="fa-brands fa-cc-visa"></i> <p>Visa Services</p>
</a>
</li>
</ul>
</div>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{url('admin/testimonials')}}" class="nav-link {{(Request::segment(2) == 'testimonials') ? 'active' : ''}}"> <a href="{{url('admin/testimonials')}}" class="nav-link {{(Request::segment(2) == 'testimonials') ? 'active' : ''}}">
<i class="fa fa-quote-right" aria-hidden="true"></i> <i class="fa fa-quote-right" aria-hidden="true"></i>
@ -150,45 +162,30 @@
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{url('admin/faqs')}}" class="nav-link {{(Request::segment(2) == 'faqs') ? 'active' : ''}}"> <a href="{{url('admin/faqs')}}" class="nav-link {{(Request::segment(2) == 'faqs') ? 'active' : ''}}">
<i class="fa fa-quote-right" aria-hidden="true"></i> <i class="fa-solid fa-circle-question" aria-hidden="true"></i>
<p> <p>
FAQs FAQs
</p> </p>
</a> </a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a href="{{url('admin/contacts')}}" class="nav-link"> <a href="{{url('admin/contacts')}}" class="nav-link {{(Request::segment(2) == 'contacts') ? 'active' : ''}}">
<i class="fa-solid fa-id-badge"></i> <i class="fa-solid fa-id-badge"></i>
<p> <p>
Contact/Enquiry Contact
</p> </p>
</a> </a>
</li> </li>
<li class="nav-item">
<a href="{{url('admin/enquiries')}}" class="nav-link {{(Request::segment(2) == 'enquiries') ? 'active' : ''}}">
<i class="fa-solid fa-id-badge"></i>
<!-- <li class="nav-item">
<a href="{{url('admin/seo_titles')}}" class="nav-link {{(Request::segment(2) == 'departments') ? 'active' : ''}}">
<i class="fa-solid fa-magnifying-glass"></i>
<p> <p>
Seo Titles Enquiries
</p> </p>
</a> </a>
</li> --> </li>
</ul> </ul>
</nav> </nav>
<!-- /.sidebar-menu --> <!-- /.sidebar-menu -->
@ -206,3 +203,4 @@
<!-- /.control-sidebar --> <!-- /.control-sidebar -->
</div> </div>
<!-- ./wrapper --> <!-- ./wrapper -->

@ -4,7 +4,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>AplusAgency |Admin Login</title> <title>ET-Visas | Admin Login</title>
<!-- Google Font: Source Sans Pro --> <!-- Google Font: Source Sans Pro -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
@ -20,7 +20,7 @@
{!! Html::style('admin/css/custom-admin.css') !!} {!! Html::style('admin/css/custom-admin.css') !!}
<link rel="stylesheet" href=""> <link rel="stylesheet" href="">
</head> </head>
<body class="hold-transition login-page"> <body class="hold-transition login-page">
<div class="login-box"> <div class="login-box">

@ -1,157 +0,0 @@
@extends('admin.layouts.app')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Career</h1>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="card card-default">
<div class="card-header">
<h3 class="card-title">Create Career</h3>
<a href="{{url('admin/careers')}}" class="back-button">List</a>
</div>
<div class="card-body">
@include('success.success')
@include('errors.error')
{!! Form::open(['url' => '/admin/careers', 'class' => 'form-horizontal', 'method'=> 'POST','files' => true,'autocomplete' => 'OFF']) !!}
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Image <span style="color: red";> * </span> </label>
<input type="file" class="form-control" name="image" required>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Title <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="title" value="{{old('title')}}" required>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Sub Title <span style="color: red";> * </span></label>
<textarea name="sub_title" class="summernote_class" rows="5" required style="height: 658px;" >{{old('sub_title')}}</textarea>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Point Title <span style="color: red";> * </span> </label>
<textarea name="point_title" class="summernote_class" rows="5" required style="height: 658px;" >{{old('point_title')}}
</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Title</label>
<input type="text" class="form-control" id="inputPassword3" name="seo_title" value="{{old('seo_title')}}">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Keyword <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="keyword" value="{{old('keyword')}}" required>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Description </label>
<textarea class="summernote_class" name="seo_description">{{old('seo_description')}}</textarea>
{{-- <input type="text" class="form-control" id="inputPassword3" name="seo_description" >--}}
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Meta Keyword</label>
<textarea class="summernote_class" name="meta_keyword" >{{old('meta_keyword')}}</textarea>
</div>
</div>
</div>
<div class="row" id="point_dom">
<div class="col-md-6 rel-close" id="point_row_1">
<div class="dom-box">
<div class="add-points card">
<div class="form-group" id="point_g_1" >
<!-- <label for=""> Point Title <span style="color: red";> * </span></label> <br> -->
<!-- <input type="text" name="point_title" id="title1" placeholder="Title"> <br> -->
<div id="point1" class="point1" >
<label for="">Points <span style="color: red";> * </span> </label> <br>
<input type="text" class="point" name="points[]" placeholder="Points"> <br>
<button class="close-point" onclick="deletePoint(1)" type="button"><i class="fa fa-trash" aria-hidden="true"></i></button>
</div>
</div>
<button type="button" class="add-point-btn btn btn-primary" onclick="getPoint(1)">Add Points</button>
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Status <span style="color: red";> * </span> </label>
<select name="status" class="form-control" id="type" required>
<option value="" selected disabled>Please select Status</option>
@foreach(config('custom.status') as $in => $val)
<option value="{{$in}}" {{(old('status')==$in) ? 'selected':''}}>{{$val}}</option>
@endforeach
</select>
</div>
</div>
</div>
<div class="form-group row create-button">
<div class="col-sm-10 col-md-12">
<button type="submit" class="btn btn-primary">Create</button>
</div>
</div>
{!! Form::close() !!}
</div>
</div>
</div>
</section>
</div>
@endsection
@section('script')
<script>
$(document).ready(function() {
$('.summernote_class').summernote()
})
var point_count = 1;
function getPoint(count){
point_count = point_count +1;
debugger;
var html = '<div id="point'+point_count+'" class="point1">'+
'<input type="text" class="point" name="points[]" placeholder="Points"> <br>'+
'<button type="button" class="close-point" onclick="deletePoint('+point_count+')"><i class="fa fa-trash" aria-hidden="true"></i></button>'+
'</div>';
$('#point_g_1').append(html);
}
function deletePoint(count){
if($('.point').length > 1){
$('#point'+count).remove();
}
}
</script>
@endsection

@ -1,203 +0,0 @@
@extends('admin.layouts.app')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Career</h1>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="card card-default">
<div class="card-header">
<h3 class="card-title">Edit Career</h3>
<a href="{{url('admin/careers')}}" class="back-button">Back</a>
</div>
<div class="card-body">
@include('success.success')
@include('errors.error')
{!! Form::open(['url' => '/admin/careers/'.$about_us->id, 'class' => 'form-horizontal', 'method'=> 'POST','files' => true]) !!}
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>Image</label>
<input type="file" class="form-control" name="image" >
<br>
<span>
<a href="{{url($about_us->image)}}" target="_blank">
<img src="{{url($about_us->image)}}" alt="" style="width: 100px">
</a>
</span>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Title <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="title" value="{{$about_us->title}}" required>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Sub Title <span style="color: red";> * </span></label>
<textarea name="sub_title" class="summernote_class" rows="5" required style="height: 658px;" >{{$about_us->sub_title}}</textarea>
</div>
</div>
<div class="col-md-6" >
<div class="form-group" >
<label>Point Title <span style="color: red";> * </span> </label>
<textarea name="point_title" class="summernote_class" rows="5" required style="height: 658px;" >{{$about_us->point_title}}
</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Title</label>
<input type="text" class="form-control" id="inputPassword3" name="seo_title" value="{{$about_us->seo_title}}">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label> Keyword <span style="color: red";> * </span> </label>
<input type="text" class="form-control" id="inputPassword3" name="keyword" value="{{$about_us->keyword}}">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Seo Description</label>
<textarea class="summernote_class" name="seo_description">{{$about_us->seo_description}}</textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Meta Keyword</label>
<textarea class="summernote_class" name="meta_keyword" >{{$about_us->meta_keyword}}</textarea>
</div>
</div>
</div>
@if($about_us->career_points->count() > 0)
<div class="row" id="point_dom">
<div class="col-md-6 rel-close" id="point_row_1">
<div class="dom-box">
<div class="add-points card">
<div class="form-group" id="point_g_1" >
<!-- <label for="">Point Title <span style="color: red";> * </span> </label> <br> -->
<!-- <input type="text" name="point_title" id="title1" placeholder="title" value="{{$about_us->point_title}}"> <br> -->
<label for="">Points <span style="color: red";> * </span> </label>
<br>
@foreach($about_us->career_points as $point)
<div id="point_old{{$point->id}}" class="point1" >
<input type="text" class="point" name="points[]" placeholder="Point" value="{{$point->point}}"> <br>
<input type="hidden" name="point_old_id[]" placeholder="points" value="{{$point->id}}"> <br>
<button class="close-point" onclick="deletePointPermanently({{$point->id}})" type="button"><i class="fa fa-trash" aria-hidden="true"></i></button>
</div>
@endforeach
</div>
<button type="button" class="add-point-btn btn btn-primary" onclick="getPoint(1)">Add Points</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Status <span style="color: red";> * </span> </label>
<select name="status" class="form-control" id="type" required>
<option value="" selected disabled>Please select Status</option>
@foreach(config('custom.status') as $in => $val)
<option value="{{$in}}" {{($about_us->status ==$in) ? 'selected':''}}>{{$val}}</option>
@endforeach
</select>
</div>
</div>
</div>
@endif
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Update</button>
</div>
</div>
{!! Form::close() !!}
</div>
</div>
</div>
</section>
</div>
@endsection
@section('script')
<script>
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$(document).ready(function() {
$('.summernote_class').summernote()
})
var point_count = 1;
function getPoint(count){
point_count = point_count +1;
var html = '<div id="point'+point_count+'" class="point1">'+
'<input type="text" class="point" name="points[]" placeholder="Point"> <br>'+
'<button type="button" class="close-point" onclick="deletePoint('+point_count+')"><i class="fa fa-trash" aria-hidden="true"></i></button>'+
'</div>';
$('#point_g_1').append(html);
}
function deletePoint(count){
if($('.point').length > 1){
$('#point'+count).remove();
}
}
function deletePointPermanently(id){
if($('.point').length > 1){
if (confirm("Are you sure Delete?")) {
$.ajax({
/* the route pointing to the post function */
type: 'GET',
url: Laravel.url +"/admin/blog_point/"+id,
dataType: 'json',
processData: false, // tell jQuery not to process the data
contentType: false,
/* remind that 'data' is the response of the AjaxController */
success: function (data) {
$('#point_old'+data.blog_point_id).remove();
},
error: function(error) {
}
});
}
return false;
}
}
</script>
@endsection

@ -1,135 +0,0 @@
@extends('admin.layouts.app')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="card card-default">
<div class="card-header">
<h3 class="card-title">Referral</h3>
<a href="{{url('admin/referrals')}}" class="btn btn-green back-button active" role="button" aria-pressed="true">List</a>
</div>
<div class="card-body">
@include('success.success')
@include('errors.error')
<div class="row">
<div class="col-md-12">
<div class="col-md-12">
<label for="service_name" style="font-weight: bold; font-size: 20px; color: #DD6227">Participant Details</label></br>
<ul class="contact-info">
<li class="d-flex">
<span>Full Name:</span>
<span>{{$referral->name}}</span>
</li>
<li class="d-flex">
<span>Gender:</span>
<span>@if($referral->gender == '1') Male @elseif($referral->gender == '2') Female @else Other @endif</span>
</li>
<li class="d-flex">
<span>Email:</span>
<span>{{$referral->email}}</span>
</li>
<li class="d-flex">
<span>Date of Birth:</span>
<span>{{$referral->dob}}</span>
</li>
<li class="d-flex">
<span>Phone:</span>
<span>{{$referral->mobile_no}}</span>
</li>
</ul>
</div>
<div class="col-md-12 mt-4">
<label for="service_name" style="font-weight: bold; font-size: 20px; color: #DD6227">Participant Address</label></br>
<ul class="contact-info">
<li class="d-flex">
<span>Suburb:</span>
<span>{{$referral->suburb}}</span>
</li>
<li class="d-flex">
<span>State/Region:</span>
<span>{{$referral->state_name}}</span>
</li>
<li class="d-flex">
<span>Postal Code:</span>
<span>{{$referral->postalcode}}</span>
</li>
</ul>
</div>
@if($referral->is_ndis == '1')
<div class="col-md-12 mt-4" >
<label for="service_name" style="font-weight: bold; font-size: 20px; color: #DD6227">NDIS Details</label></br>
<ul class="contact-info">
<li class="d-flex">
<span>NDIS Number:</span>
<span>{{$referral->ndis_number}}</span>
</li>
<li class="d-flex">
<span>NDIS Expiry Date:</span>
<span>{{$referral->ndis_expiry_date}}</span>
</li>
<li class="d-flex">
<span>NDIS Plan:</span>
<span>{{config('custom.ndis_plan')[$referral->ndis_plan]}}</span>
</li>
</ul>
</div>
@endif
<div class="col-md-12 mt-4">
<label for="service_name" style="font-weight: bold; font-size: 20px; color: #DD6227">Service Details</label></br>
<ul class="contact-info">
<li class="d-flex">
<span>Sevices:</span>
<span>
@foreach($referral->referral_services as $service)
{{App\Models\Service::find($service->service_id)->name}}<br />
@endforeach
</span>
</li>
<li class="d-flex">
<span>Details: </span>
<span>{{$referral->services_details}}</span>
</li>
</ul>
</div>
<div class="col-md-12 mt-4">
<label for="service_name" style="font-weight: bold; font-size: 20px; color: #DD6227">Referrer Details</label></br>
<ul class="contact-info">
<li class="d-flex">
<span>Referrer Full Name:</span>
<span>{{$referral->referrer_full_name}}</span>
</li>
<li class="d-flex">
<span>Referrer Contact Number:</span>
<span>{{$referral->referrer_contact_no}}</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
@endsection

@ -20,9 +20,13 @@
<div class="col-sm-12 col-md-4 d-flex align-items-start"> <div class="col-sm-12 col-md-4 d-flex align-items-start">
<div class="nav appointment-pills flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical"> <div class="nav appointment-pills flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<button class="btn-appointment nav-link active" id="v-pills-education-tab" data-type = "1" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-home" aria-selected="true"> <button class="btn-appointment nav-link active" id="v-pills-education-tab" data-type = "1" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-home" aria-selected="true">
<i class="appointment-card-img"><img src="{{url('frontend/icons/visa-approved.svg')}}" class="img-fluid" alt=""></i>Education Services</button> <i class="appointment-card-img"><img src="{{url('frontend/icons/visa-approved.svg')}}" class="img-fluid" alt=""></i>
<h2>Education Services</h2>
</button>
<button class="btn-appointment nav-link" id="v-pills-visa-tab" data-type = "2" data-bs-toggle="pill" data-bs-target="#v-pills-visa" type="button" role="tab" aria-controls="v-pills-visa" aria-selected="false"> <button class="btn-appointment nav-link" id="v-pills-visa-tab" data-type = "2" data-bs-toggle="pill" data-bs-target="#v-pills-visa" type="button" role="tab" aria-controls="v-pills-visa" aria-selected="false">
<i class="appointment-card-img"><img src="{{url('frontend/icons/visa-approved.svg')}}" class="img-fluid" alt=""></i>Migration | Visa Services</button> <i class="appointment-card-img"><img src="{{url('frontend/icons/visa-approved.svg')}}" class="img-fluid" alt=""></i>
<h2>Migration | Visa Services</h2>
</button>
</div> </div>
</div> </div>
@ -38,7 +42,7 @@
<h3>Education services | 30 mins</h3> <h3>Education services | 30 mins</h3>
<div id="1-calendar-apppearance"></div> <div id="1-calendar-apppearance"></div>
<div id='1-available-dates' class="available-dates"></div> <div id='1-available-dates' class="available-dates"></div>
</div> </div>
</div> </div>
<!-- Start of Visa Block --> <!-- Start of Visa Block -->
@ -65,27 +69,30 @@
<div class="modal-dialog" role="document"> <div class="modal-dialog" role="document">
<div class="modal-content"> <div class="modal-content">
<div class="modal-header"> <div class="modal-header">
<h3 class="modal-title" id="appointmentModalLabel">Book Appointment</h3> <h3 class="modal-title" id="appointmentModalLabel">Book Appointment</span></h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<div class="book-modal-info"> <div class="book-modal-info">
<p>Book your appointment for &nbsp;<span id = "booking_date"></span><span class="time" id = "start_time"></span> to <span id = "end_time"></span></p> <p>You are about to book appointment for <span id = "booking_service"></span> at date &nbsp;<span id = "booking_date"></span><span class="time" id = "start_time"></span> to <span id = "end_time"></span></p>
</div> </div>
<!-- Form with the fields name, email, phone, and notes --> <!-- Form with the fields name, email, phone, and notes -->
<form id ="appointment-form"> <form id ="appointment-form">
<input type="hidden" name="appointment_id" id="appointment_id"> <input type="hidden" name="appointment_id" id="appointment_id">
<div class="form-group mb-2"> <div class="form-group mb-2">
<label for="name">Name</label> <label for="name">Name</label>
<input type="text" class="form-control mt-1" id="name" name="name" required> <input type="text" class="form-control mt-1" id="app-name" name="name" onkeyup="validateAppName()">
<span class="error" id="app-name-error"></span>
</div> </div>
<div class="form-group mb-2"> <div class="form-group mb-2">
<label for="email">Email</label> <label for="email">Email</label>
<input type="email" class="form-control mt-1" id="email" name="email" required> <input type="email" class="form-control mt-1" id="app-email" name="email" onkeyup="validateAppEmail()">
<span class="error" id="app-email-error"></span>
</div> </div>
<div class="form-group mb-2"> <div class="form-group mb-2">
<label for="phone">Phone</label> <label for="phone">Phone</label>
<input type="tel" class="form-control mt-1" id="phone" name="phone" required> <input type="tel" class="form-control mt-1" id="app-phone" name="phone" onkeyup="validateAppPhone()">
<span class="error" id="app-phone-error"></span>
</div> </div>
<div class="form-group mb-2"> <div class="form-group mb-2">
<label for="notes">Notes</label> <label for="notes">Notes</label>
@ -95,7 +102,10 @@
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" onclick = "submitAppointment(event)" class="btn btn-primary">Book Appointment</button> <button type="button" onclick = "submitAppointment()" class="btn btn-primary" id="appointmentbtn">Book Appointment</button>
<button class="buttonload btn btn-primary" id="buttonenqload" disabled>
<i class="fas fa-spinner fa-pulse"></i> Submiting
</button>
</div> </div>
</div> </div>
</div> </div>
@ -113,8 +123,8 @@
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
} }
}); });
$('#v-pills-education-tab').click(function (e) { $('#v-pills-education-tab').click(function (e) {
var id = $(this).data("type"); var id = $(this).data("type");
var $calender = $("#"+id+"-calendar-apppearance"); var $calender = $("#"+id+"-calendar-apppearance");
@ -135,41 +145,33 @@
function displayCalendar($calender,id){ function displayCalendar($calender,id){
var id = id; var id = id;
var now = new Date(); var now = new Date();
var appointments_list = id == 1 ? {!! json_encode($educationAppointments) !!} : {!! json_encode($visaAppointments) !!};
var events = [];
appointments_list.forEach(function(list) {
events.push({
date: list.date,
classname: "clickable event-clickable"
});
});
$calender.zabuto_calendar({ $calender.zabuto_calendar({
data: [ classname: 'table event-colourful table-bordered lightgrey-weekends',
@foreach($educationAppointments as $appointment) week_starts: 'monday',
@php show_days: true,
$date = Carbon\Carbon::createFromFormat('Y-m-d', $appointment->date); cell_border: true,
$start_time = Carbon\Carbon::createFromFormat('H:i A', $appointment->start_time); weekstartson: 0,
$end_time = Carbon\Carbon::createFromFormat('H:i A', $appointment->end_time); navigation_markup: {
@endphp prev: '<i class="fas fa-chevron-circle-left"></i>',
{ next: '<i class="fas fa-chevron-circle-right"></i>'
date: "{{ $date->format('Y-m-d') }}", },
content: "{{ $start_time->format('H:i') }} - {{ $end_time->format('H:i') }}"
}, events:events
@endforeach
],
classname: 'table event-colourful table-bordered lightgrey-weekends',
week_starts: 'monday',
show_days: true,
cell_border: true,
show_days: true,
weekstartson: 0,
navigation_markup: {
prev: '<i class="fas fa-chevron-circle-left"></i>',
next: '<i class="fas fa-chevron-circle-right"></i>'
},
events:[
@foreach($educationAppointments as $appointment)
{
date: "{{ $appointment->date }}",
"classname": "clickable event-clickable"
},
@endforeach
]
}); });
let allBtns = document.querySelectorAll("td")
$calender.on('zabuto:calendar:day', function (e) { $calender.on('zabuto:calendar:day', function (e) {
var now = new Date(); var now = new Date();
var date = e.date; var date = e.date;
@ -192,18 +194,17 @@
} }
}); });
// On click, remove the MyClass on ALL td
allBtns.forEach(function(el){
el.classList.remove("active");
});
if (e.today) { // Add the class on clicked one
$(e.element).html('<span class="badge bg-success">'+ e.date.getDate() +'</span>'); e.target.classList.add("active");
} else if (e.date.getTime() < now.getTime()) {
$(e.element).html('<span class="badge bg-danger">'+ e.date.getDate() +'</span>');
} else {
$(e.element).html('<span class="badge bg-success">'+ e.date.getDate() +'</span>');
}
}) })
} }
function dispalyAppointments(appointments,formated_date,id) { function dispalyAppointments(appointments,formated_date,id) {
//display available appointments in timeslot //display available appointments in timeslot
if (appointments.length > 0) { if (appointments.length > 0) {
@ -226,43 +227,100 @@
var startTime = $(this).data("start-time"); var startTime = $(this).data("start-time");
var endTime = $(this).data("end-time"); var endTime = $(this).data("end-time");
$('#appointment-form input[name="appointment_id"]').val(appointmentId); $('#appointment-form input[name="appointment_id"]').val(appointmentId);
$('#booking_date').html(formated_date); $('#booking_date').html('<b>'+formated_date+'</b>');
if(id == 1){
$('#booking_service').html('<b>Education Service</b>');
}
if(id == 2){
$('#booking_service').html('<b>Migration/Visa Service</b>');
}
$('#start_time').html('&nbsp;<b>('+startTime+'</b>'); $('#start_time').html('&nbsp;<b>('+startTime+'</b>');
$('#end_time').html('<b>'+endTime+')</b>'); $('#end_time').html('<b>'+endTime+')</b>');
$("#modal").modal("show"); $("#modal").modal("show");
}); });
} }
else{ else{
$('#'+id+'-available-dates').html("No appointments available for " + "<b>"+formated_date+"</b>"); $('#'+id+'-available-dates').html("No appointments available for " + "<b>"+formated_date+"</b>");
} }
} }
function submitAppointment(event){ appNameError = document.getElementById('app-name-error');
event.preventDefault(); appEmailError = document.getElementById('app-email-error');
$.ajax({ appPhoneError = document.getElementById('app-phone-error');
url: "/appointment_submit", loaderenqBtn = document.getElementById('buttonenqload');
type: "post", appointmentBtn = document.getElementById('appointmentbtn');
data: $("form").serialize(), function validateAppName(){
success: function(response) { var appName = document.getElementById('app-name').value;
$("#modal").modal("hide"); if(appName.length == 0){
// var isAmStart = response.appointment.start_time < '12:00:00'; $('#name-email').focus();
// var isAmEnd = response.appointment.end_time < '12:00:00'; appNameError.innerHTML = "Name Field is required !";
return false;
Swal.fire({ }
title: 'Booked!!', appNameError.innerHTML = '';
text: 'Appointment Successfully Booked for '+response.appointment_detail['name']+' at '+response.formated_date +'('+response.appointment['start_time']+' - ' + response.appointment['end_time']+' )', return true;
icon: 'success' }
}).then(function(){
location.reload(); function validateAppEmail(){
var appEmail = document.getElementById('app-email').value;
if(appEmail.length == 0){
$('#name-email').focus();
appEmailError.innerHTML = "Email Field is required !";
return false;
}
if(!appEmail.match(/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(.\w{2,3})+$/)){
appEmailError.innerHTML = "Invalid email address";
return false;
}
appEmailError.innerHTML = '';
return true;
}
function validateAppPhone(){
var appPhone = document.getElementById('app-phone').value;
if(appPhone.length == 0){
$('#app-phone').focus();
appPhoneError.innerHTML = "Phone Field is required !";
return false;
}
if(!appPhone.match(/^\d{10}$/)){
appPhoneError.innerHTML = "Invalid mobile number";
return false;
}
appPhoneError.innerHTML = '';
return true;
}
function submitAppointment(){
if(!validateAppName() || !validateAppEmail() || !validateAppPhone()){
return false;
}else{
loaderenqBtn.classList.add('displayBtn')
appointmentBtn.classList.add('buttonload')
$.ajax({
url: "/appointment_submit",
type: "post",
data: $("form").serialize(),
success: function(response) {
$("#modal").modal("hide");
// var isAmStart = response.appointment.start_time < '12:00:00';
// var isAmEnd = response.appointment.end_time < '12:00:00';
loaderenqBtn.classList.remove('displayBtn');
Swal.fire({
title: 'Booked!!',
text: 'Appointment Successfully Booked for '+response.appointment_detail['name']+' at '+response.formated_date +'('+response.appointment['start_time']+' - ' + response.appointment['end_time']+' )',
icon: 'success'
}).then(function(){
location.reload();
}
)
} }
) });
} }
});
} }
</script> </script>
@endsection @endsection

@ -19,6 +19,7 @@
<b>Appointment End Time:</b>{{$end_time}}<br /><br /> <b>Appointment End Time:</b>{{$end_time}}<br /><br />
<b>Your Full Name:</b> {{ $full_name }}<br /><br /> <b>Your Full Name:</b> {{ $full_name }}<br /><br />
<b>Phone:</b> {{$phone}}<br /><br /> <b>Phone:</b> {{$phone}}<br /><br />
</div> </div>
</div> </div>

@ -0,0 +1,25 @@
<style>
.main-column{
display:flex;
width:100%;
}
.column-one{
width:50%;
}
</style>
<h1>Appointment Confirmed</h1>
<br />
<div class="main-column" style = "display:block; width:100%;">
<div class="column-one" style = "display:block; width:100%;">
<h3>Appointment Details</h3>
<b>Appointment Date: </b>{{$date}}<br /><br />
<b>Appointment Start Time: </b>{{$start_time}}<br /><br />
<b>Appointment End Time: </b>{{$end_time}}<br /><br />
<b>Appointee Full Name: </b> {{ $full_name }}<br /><br />
<b>Phone:</b> {{$phone}}<br /><br />
<b>Email:</b> {{$email}}<br /><br />
</div>
</div>

@ -55,10 +55,10 @@
<h1>Most Popular Blogs</h1> <h1>Most Popular Blogs</h1>
@foreach(App\Models\NewsAndUpdate::where('id','!=',$blog->first()->id)->where('status','1')->get() as $recent) @foreach(App\Models\NewsAndUpdate::where('id','!=',$blog->first()->id)->where('status','1')->get() as $recent)
<a href="{{url('blog/'.$recent->slug)}}" class="recent-card-content"> <a href="{{url('blog/'.$recent->slug)}}" class="recent-card-content">
<div class="recent-card-img"> <div class="col-md-4 recent-card-img">
<img src="{{url($recent->thumbnail ?? $recent->image)}}" class="w-100" alt=""> <img src="{{url($recent->thumbnail ?? $recent->image)}}" class="w-100" alt="">
</div> </div>
<div class="recent-post-desc"> <div class="col-md-8 recent-post-desc">
@php $date = Carbon\Carbon::createFromFormat('Y-m-d', $recent->publish_date);@endphp @php $date = Carbon\Carbon::createFromFormat('Y-m-d', $recent->publish_date);@endphp
<h5>{{$date->format('j M, Y')}}</h5> <h5>{{$date->format('j M, Y')}}</h5>
<h5>2 min read</h5> <h5>2 min read</h5>
@ -66,26 +66,6 @@
</div> </div>
</a> </a>
@endforeach @endforeach
<!-- <a href="blog-detail" class="recent-card-content">
<div class="recent-card-img">
<img src="{{url('frontend/images/blank.png')}}" class="w-100" alt="">
</div>
<div class="recent-post-desc">
<h5>25/01/2023</h5>
<h5>2 min read</h5>
<h2>Best ways to settle your career in Australia</h2>
</div>
</a>
<a href="blog-detail" class="recent-card-content">
<div class="recent-card-img">
<img src="{{url('frontend/images/blank.png')}}" class="w-100" alt="">
</div>
<div class="recent-post-desc">
<h5>25/01/2023</h5>
<h5>2 min read</h5>
<h2>Best ways to settle your career in Australia</h2>
</div>
</a> -->
</div> </div>
</div> </div>
</div> </div>

@ -23,7 +23,7 @@
</section> </section>
<section class="blogs-section"> <section class="blogs-section">
<h2 class="visa-para-title mb-5"> <h2 class="visa-para-title mb-5">
<img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> <img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt="">
Latest Articles Latest Articles
</h2> </h2>
@php @php
@ -40,47 +40,23 @@
{!!(\Illuminate\Support\Str::limit($blog->description, 200, $end='...'))!!}</p> {!!(\Illuminate\Support\Str::limit($blog->description, 200, $end='...'))!!}</p>
<a href="{{url('/blog/'.$blog->slug)}}">Read More <i class="fa-solid fa-arrow-right-long ms-2 fa-sm"></i></a> <a href="{{url('/blog/'.$blog->slug)}}">Read More <i class="fa-solid fa-arrow-right-long ms-2 fa-sm"></i></a>
</div> </div>
</div> </div>
<div class="col-md-7"> <div class="col-md-7">
<div class="related-articles"> <div class="related-articles">
@foreach($blogs->where('blog_type','!=',1) as $blog) @foreach($blogs->where('blog_type','!=',1) as $blog)
<div class="article-card"> <div class="article-card">
<div class="article-img"> <div class="col-md-4 article-img">
<img src="{{url($blog->thumbnail ?? $blog->image)}}" class="w-100" alt=""> <img src="{{url($blog->thumbnail ?? $blog->image)}}" class="img-fluid" alt="">
</div> </div>
<div class="article-desc"> <div class="col-md-8 article-desc">
<h3 class="dinline mr-3">Study in Australia</h3> <h3 class="dinline mr-3">Study in Australia</h3>
<h6 class="dinline mr-3">{{$blog->publish_date}}</h6> <h6 class="dinline mr-3">{{$blog->publish_date}}</h6>
<h2>{{$blog->title}} </h2> <h2>{{$blog->title}} </h2>
{!!(\Illuminate\Support\Str::limit($blog->description, 200, $end='...'))!!}</p> {!!(\Illuminate\Support\Str::limit($blog->description, 200, $end=''))!!}</p>
<a href="{{url('/blog/'.$blog->slug)}}">Read More <i class="fa-solid fa-arrow-right-long ms-2 fa-xs"></i></a> <a href="{{url('/blog/'.$blog->slug)}}">Read More <i class="fa-solid fa-arrow-right-long ms-2 fa-xs"></i></a>
</div> </div>
</div> </div>
@endforeach @endforeach
<!-- <div class="article-card">
<div class="article-img">
<img src="{{url('frontend/images/blog-passport.png')}}" class="w-100" alt="">
</div>
<div class="article-desc">
<h3>Study in Australia</h3>
<h6>Dec 09, 2022, 2 mins read</h6>
<h2>Ten Reasons that make Australia the Best Destination </h2>
<p>If you want to study in a city surrounded by lush greenery and a pleasant atmosphere..</p>
<a href="blog-detail">Read More <i class="fa-solid fa-arrow-right-long ms-2 fa-xs"></i></a>
</div>
</div>
<div class="article-card">
<div class="article-img">
<img src="{{url('frontend/images/blog-passport.png')}}" class="w-100" alt="">
</div>
<div class="article-desc">
<h3>Study in Australia</h3>
<h6>Dec 09, 2022, 2 mins read</h6>
<h2>Ten Reasons that make Australia the Best Destination </h2>
<p>If you want to study in a city surrounded by lush greenery and a pleasant atmosphere..</p>
<a href="blog-detail">Read More <i class="fa-solid fa-arrow-right-long ms-2 fa-xs"></i></a>
</div>
</div> -->
</div> </div>
</div> </div>
</div> </div>
@ -94,4 +70,4 @@
<h5>Get Free Consultation with Experts</h5> <h5>Get Free Consultation with Experts</h5>
</div> </div>
</section> </section>
@endsection @endsection

@ -9,8 +9,8 @@
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/> <meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection @endsection
@section('content') @section('content')
@php @php
$msg = Session::get('msg') ?? null; $msg = Session::get('msg') ?? null;
@endphp @endphp
<section class="abroad-banner-section" style="background: url({{$page->banner_image}})"> <section class="abroad-banner-section" style="background: url({{$page->banner_image}})">
<!-- <nav aria-label="breadcrumb"> <!-- <nav aria-label="breadcrumb">
@ -113,7 +113,7 @@
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script> <script>
// contact us form error declaration // contact us form error declaration
fnameError = document.getElementById('contact-fname-error'); fnameError = document.getElementById('contact-fname-error');
@ -189,7 +189,7 @@
} }
var php_var = "<?php echo $msg; ?>"; var php_var = "<?php echo $msg; ?>";
if(php_var.length !== 0){ if(php_var.length !== 0){
Swal.fire({ Swal.fire({
title: 'Submitted!!', title: 'Submitted!!',

@ -0,0 +1,552 @@
@extends('layout.app')
@section('title')
<title>Enquiry Form</title>
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection
@section('content')
<section class="enquiry-form-section">
@php
$msg = Session::get('msg') ?? null;
$status = Session::get('status') ?? null;
@endphp
<h2>Enquiry Form</h2>
<p>Please fill up the form and we will get back to you soon, Thanks !</p>
<form action="{{ route('enquiry.submit') }}" onsubmit="return submitEnquiry()" method = "post">
@csrf
<div class="row enquiry-form-row">
<h3>Personal Details</h3>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">First Name</label>
<input type="text" class="form-control" id="fname" name="first_name" value="" placeholder="Enter your First name" onkeyup="validatefName()">
<span class="error" id="error-fname"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Middle Name</label>
<input type="text" class="form-control" id="mname" name="middle_name" value="" placeholder="Enter your Middle name">
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Last Name</label>
<input type="text" class="form-control" id="lname" name="last_name" value="" placeholder="Enter your Last name" onkeyup="validatelName()">
<span class="error" id="error-lname"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Date of birth</label>
<input type="date" class="form-control" id="dob" name="dob" placeholder="Enter your Date of birth" onkeyup="validateDob()">
<span class="error" id="error-dob"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Country</label>
<select class="form-select" name="cob" id="e-cob" onchange="eCob()">
<option hidden>Select your country of birth</option>
@foreach($countries as $country)
<option class="select-placeholder" value="{{$country->id}}" @if(old('country_id') === $country->id) selected @endif>{{$country->name}}</option>
@endforeach
</select>
<span class="error" id="error-cob"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Gender</label>
<div class="d-flex gap-2" onclick="eGender()">
<div class="form-check">
<input class="form-check-input gender" type="radio" name="gender" value="Male"/>
<label class="form-check-label">
Male
</label>
</div>
<div class="form-check">
<input class="form-check-input gender" type="radio" name="gender" value="Female"/>
<label class="form-check-label">
Female
</label>
</div>
<div class="form-check">
<input class="form-check-input gender" type="radio" name="gender" value="Other"/>
<label class="form-check-label">
Other
</label>
</div>
</div>
<span class="error" id="error-gender"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Address</label>
<input type="text" class="form-control" id="address" name="address" placeholder="Enter your Address" onkeyup="validateAddress()">
<span class="error" id="error-address"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Email</label>
<input type="email" class="form-control" id="email" name="email" placeholder="Enter your Email Address" onkeyup="validateEmail()">
<span class="error" id="error-email"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Phone</label>
<input type="text" class="form-control" id="phone" name="phone" placeholder="Enter your Phone Number" onkeyup="validatePhone()">
<span class="error" id="error-phone"></span>
</div>
</div>
<h3 class="mt-5">Additional Information</h3>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Highest Qualification</label>
<input type="text" class="form-control" id="highest_qualification" name="highest_qualification" placeholder="Enter your Highest Qualification" onkeyup="validateQualification()">
<span class="error" id="error-qualification"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Stream</label>
<input type="text" class="form-control" id="stream" name="stream" placeholder="Enter your Stream" onkeyup="validateStream()">
<span class="error" id="error-stream"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">% or GPA</label>
<input type="text" class="form-control" id="gpa" name="gpa" placeholder="Enter your % or GPA" onkeyup="validateGpa()">
<span class="error" id="error-gpa"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Passed Year</label>
<input type="text" class="form-control" id="graduate_year" name="graduate_year" placeholder="Enter your Passed Year" onkeyup="validatePassout()">
<span class="error" id="error-graduate_year"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Gap after Studies</label>
<input type="text" class="form-control" id="gap" name="gap" placeholder="Enter your Gap after Studies" onkeyup="validateGap()">
<span class="error" id="error-gap"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">What you are doing now?</label>
<input type="text" class="form-control" id="current_status" name="current_status" placeholder="Enter your Current Status" onkeyup="validateCurrent()">
<span class="error" id="error-currentStatus"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Do you have work experience?</label>
<select class="form-select" name="work_experience" id="work-experience" onchange="wExperience()">
<option hidden value="">Work experence status</option>
<option value="yes" class="select-placeholder">Yes</option>
<option value="no" class="select-placeholder">No</option>
</select>
<span class="error" id="error-workExperience"></span>
</div>
</div>
<div class="col-md-4" id="work-exp-detail">
<div class="form-group mb-3">
<label for="name">Work experience Details</label>
<input type="text" class="form-control" id="work-experience-detail" name="work_experience_details" placeholder="Enter your Work experience Details">
</div>
</div>
<div class="col-md-4" id="work-salary-mode">
<div class="form-group mb-3">
<label for="name">Salary mode</label>
<input type="text" class="form-control" id="salary-mode" name="salary_mode" placeholder="Enter your Salary Mode">
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">IELTS / PTE Score</label>
<input type="text" class="form-control" id="test-score" name="test_score" placeholder="Enter your IELTS / PTE score">
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Marital Status</label>
<div class="d-flex gap-2" onclick="maritalStatus()">
<div class="form-check">
<input class="form-check-input marital-status" id="marital-status" type="radio" name="marital_status" value="Single"/>
<label class="form-check-label">
Single
</label>
</div>
<div class="form-check">
<input class="form-check-input marital-status" id="marital-status" type="radio" name="marital_status" value="Married"/>
<label class="form-check-label">
Married
</label>
</div>
<div class="form-check">
<input class="form-check-input marital-status" id="marital-status" type="radio" name="marital_status" value="Widow"/>
<label class="form-check-label">
Widow
</label>
</div>
</div>
<span class='error' id="error-gender"></span>
</div>
</div>
<div class="col-md-4" id="spouse-married-date">
<div class="form-group mb-3">
<label for="name">Married date</label>
<input type="date" class="form-control" id="married-date" name="married_date">
</div>
</div>
<div class="col-md-4" id="spouse-academic">
<div class="form-group mb-3">
<label for="name">Spouse Academics</label>
<input type="text" class="form-control" id="spouse-academics" name="spouse_academics" placeholder="Enter your Spouse Academics">
</div>
</div>
<div class="col-md-4" id="spouse-experience">
<div class="form-group mb-3">
<label for="name">Work Experience of Spouse</label>
<input type="text" class="form-control" id="spouse-work-experience" name="spouse_work_experience" placeholder="Enter Work Experience of Spouse">
</div>
</div>
<div class="col-md-4" id="spouse-salary">
<div class="form-group mb-3">
<label for="name">Spouse Salary Mode</label>
<input type="text" class="form-control" id="spouse-salary-mode" name="spouse_salary_mode" placeholder="Enter Spouse Salary Mode">
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Immigration History: </label>
<input type="text" class="form-control" id="immigration-history" name="immigration_history" placeholder="Enter your Immigration History" onkeyup="validateImmigrationHistory()">
<span class="error" id="error-immigration-history"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Desired study field</label>
<input type="text" class="form-control" id="desired-study-field" name="desired_study_field" placeholder="Enter your Desired study field" onkeyup="validateStudyField()">
<span class="error" id="error-studyfield"></span>
</div>
</div>
<div class="col-md-4">
<div class="form-group mb-3">
<label for="name">Desired location (If Any)</label>
<select class="form-select" name="desired_location" id="desired-location">
<option hidden>Select your desired location</option>
@foreach(config('custom.states') as $in => $val)
<option value="{{$in}}" @if(old('desired_location') == $in) selected @endif>{{$val}}</option>
@endforeach
</select>
</div>
</div>
<div class="col-md-12 text-center">
<button type="submit" class="enquiry-from-btn" id="enquirybtn">Submit</button>
<button type="submit" class="enquiry-from-btn buttonload" id="enquirybutnload" disabled>
<i class="fas fa-spinner fa-pulse"></i> Submiting
</button>
</div>
</div>
</form>
</section>
@endsection
@section('script')
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script>
var php_var = "<?php echo $msg; ?>";
var status = "<?php echo $status; ?>";
if(php_var.length !== 0){
Swal.fire({
title: 'Submitted!!',
text: php_var,
icon: status ? 'success' : 'error'
})
}
fnameError = document.getElementById('error-fname');
lnameError = document.getElementById('error-lname');
dobError = document.getElementById('error-dob');
cobError = document.getElementById('error-cob');
GenderError = document.getElementById('error-gender');
addressError = document.getElementById('error-address');
emailError = document.getElementById('error-email');
phoneNumberError = document.getElementById('error-phone');
qualificationError = document.getElementById('error-qualification');
streamError = document.getElementById('error-stream');
gpaError = document.getElementById('error-gpa');
graduateYearError = document.getElementById('error-graduate_year');
gapError = document.getElementById('error-gap');
currentStatusError = document.getElementById('error-currentStatus');
workExperienceError = document.getElementById('error-workExperience');
ImmigrationHistoryError = document.getElementById('error-immigration-history');
StudyFieldError = document.getElementById('error-studyfield');
function maritalStatus(){
var marriedDate = document.getElementById('spouse-married-date');
var spouseAcademic = document.getElementById('spouse-academic');
var spouseExperience = document.getElementById('spouse-experience');
var spouseSalary = document.getElementById('spouse-salary');
var maritalStatus = document.getElementsByClassName("marital-status");
for(var i=0;i<maritalStatus.length;i++){
if(maritalStatus[i].checked){
valid = true;
break;
}
}
if(maritalStatus[i].value == "Married"){
marriedDate.classList.add('married');
spouseAcademic.classList.add('married');
spouseExperience.classList.add('married');
spouseSalary.classList.add('married');
}else{
marriedDate.classList.remove('married');
spouseAcademic.classList.remove('married');
spouseExperience.classList.remove('married');
spouseSalary.classList.remove('married');
}
}
function wExperience(){
workExperience = document.getElementById('work-experience').value;
workDetail = document.getElementById('work-exp-detail');
salaryMode = document.getElementById('work-salary-mode');
if(workExperience.length == 0){
$('#work-experience').focus();
workExperienceError.innerHTML = "This field cannot be empty !"
return false;
}if(workExperience == "yes"){
workDetail.classList.add('married');
salaryMode.classList.add('married');
}else{
workDetail.classList.remove('married');
salaryMode.classList.remove('married');
}
workExperienceError.innerHTML = "";
return true;
}
function validatefName(){
firstName = document.getElementById('fname').value;
if(firstName.length == 0){
$('#fname').focus();
fnameError.innerHTML = "First Name is required !";
return false;
}else{
fnameError.innerHTML = "";
return true;
}
}
function validatelName(){
lastName = document.getElementById('lname').value;
if(lastName.length == 0){
$('#lname').focus();
lnameError.innerHTML = "Last Name is required !";
return false;
}else{
lnameError.innerHTML = "";
return true;
}
}
function validateDob(){
var dob = document.getElementById('dob').value;
if(dob == ""){
$('#dob').focus();
dobError.innerHTML = "Date of birth is required !";
return false;
}
dobError.innerHTML = '';
return true;
}
function eCob(){
var cob = document.getElementById('e-cob').value;
if(cob == ""){
$('#e-cob').focus();
cobError.innerHTML = "Country of birth is required !";
return false;
}
cobError.innerHTML = '';
return true;
}
function eGender(){
var valid = false;
var gender = document.getElementsByClassName("gender");
for(var i=0;i<gender.length;i++){
if(gender[i].checked){
valid = true;
break;
}
}
if(valid){
GenderError.innerHTML = '';
return true;
}else{
GenderError.innerHTML = "Please select your gender !";
return false;
}
}
function validateAddress(){
var address = document.getElementById('address').value;
if(address.length == 0){
$('#address').focus();
addressError.innerHTML = "Address field is required !";
return false;
}
addressError.innerHTML = '';
return true;
}
function validateEmail(){
var email = document.getElementById('email').value;
if(email.length == 0){
emailError.innerHTML = "Email is required !";
return false;
}
if(!email.match(/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(.\w{2,3})+$/)){
emailError.innerHTML = "Invalid email address";
return false;
}
emailError.innerHTML = '';
return true;
}
function validatePhone(){
var phone = document.getElementById('phone').value;
if(phone.length == 0){
$('#phone').focus();
phoneNumberError.innerHTML = "Mobile number is required !";
return false;
}
if(!phone.match(/^\d{10}$/)){
phoneNumberError.innerHTML = "Invalid mobile number";
return false;
}
phoneNumberError.innerHTML = '';
return true;
}
function validateQualification(){
var qualification = document.getElementById('highest_qualification').value;
if(qualification.length == 0){
$('#highest_qualification').focus();
qualificationError.innerHTML = "Highest Qualification field is required !";
return false;
}
qualificationError.innerHTML = '';
return true;
}
function validateStream(){
var stream = document.getElementById('stream').value;
if(stream.length == 0){
$('#stream').focus();
streamError.innerHTML = "Stream field is required !";
return false;
}
streamError.innerHTML = '';
return true;
}
function validateGpa(){
var gpa = document.getElementById('gpa').value;
if(gpa.length == 0){
$('#gpa').focus();
gpaError.innerHTML = "GPA or % is required !";
return false;
}
gpaError.innerHTML = '';
return true;
}
function validatePassout(){
var graduateYear = document.getElementById('graduate_year').value;
if(graduateYear.length == 0){
$('#graduate_year').focus();
graduateYearError.innerHTML = "Graduate year is required !";
return false;
}
graduateYearError.innerHTML = '';
return true;
}
function validateGap(){
var gap = document.getElementById('gap').value;
if(gap.length == 0){
$('#gap').focus();
gapError.innerHTML = "Gap field is required !";
return false;
}
gapError.innerHTML = '';
return true;
}
function validateCurrent(){
var currentStatus = document.getElementById('current_status').value;
if(currentStatus.length == 0){
$('#current_status').focus();
currentStatusError.innerHTML = "Current Status is required !";
return false;
}
currentStatusError.innerHTML = '';
return true;
}
function validateImmigrationHistory(){
var ImmigrationHistory = document.getElementById('immigration-history').value;
if(ImmigrationHistory.length == 0){
$('#immigration-history').focus();
ImmigrationHistoryError.innerHTML = "Immigration History is required !";
return false;
}
ImmigrationHistoryError.innerHTML = '';
return true;
}
function validateStudyField(){
var StudyField = document.getElementById('desired-study-field').value;
if(StudyField.length == 0){
$('#desired-study-field').focus();
StudyFieldError.innerHTML = "Desired Study Field is required !";
return false;
}
StudyFieldError.innerHTML = '';
return true;
}
var enqloaderBtn = document.getElementById('enquirybutnload');
var enquirybtn = document.getElementById('enquirybtn');
function submitEnquiry(){
if(!validatefName() || !validatelName() || !validateDob() || !eCob() || !eGender() ||
!validateAddress() || !validateEmail() || !validatePhone() || !validateQualification() ||
!validateStream() || !validateGpa() || !validatePassout() || !validateGap() || !validateCurrent() ||
!wExperience() || !validateImmigrationHistory() || !validateStudyField()){
return false;
}else{
enqloaderBtn.classList.add('displayEnqBtn');
enquirybtn.classList.add('buttonload')
}
}
</script>
@endsection

@ -0,0 +1,76 @@
<style>
.main-column{
display:flex;
width:100%;
}
.column-one{
width:50%;
}
</style>
<h1>Persional Details</h1>
<br />
<div class="main-column" style = "display:block; width:100%;">
<div class="column-one" style = "display:block; width:100%;">
<b>Full Name:</b> {{ $enquiry->first_name . ' ' .(!is_null($enquiry->middle_name) ? $enquiry->middle_name .' ' :''). $enquiry->last_name }}<br /><br />
<b>Email:</b> {{ $enquiry->email }}<br /><br />
<b>Phone:</b> {{$enquiry->phone}}<br /><br />
<b>Address:</b> {{$enquiry->address}}<br /><br />
<b>Date of Birth:</b> {{$enquiry->dob}}<br /><br />
<b>Country of Birth:</b> {{$enquiry->cob}}<br /><br />
<b>Gender:</b> {{$enquiry->gender}}<br /><br />
</div>
</div>
<h1>Additional Details</h1>
<br />
<div class="main-column" style = "display:block; width:100%;">
<div class="column-one" style = "display:block; width:100%;">
<b>Highest Qualification:</b> {{ $enquiry->highest_qualification }}<br /><br />
@if(!is_null($enquiry->stream))
<b>Stream:</b> {{$enquiry->stream}}<br /><br />
@endif
<b>% or GPA:</b> {{$enquiry->gpa}}<br /><br />
<b>Graduated year:</b> {{$enquiry->graduate_year}}<br /><br />
<b>Gap:</b> {{$enquiry->gap}}<br /><br />
<b>Current Status:</b> {{$enquiry->current_status}}<br /><br />
<b>Work Experience:</b> {{$enquiry->work_experience}}<br /><br />
@if(!is_null($enquiry->work_experience))
<b>Work Experience Details:</b> {{$enquiry->work_experience_details}}<br /><br />
@endif
@if(!is_null($enquiry->salary_mode))
<b>Salary Mode:</b> {{$enquiry->salary_mode}}<br /><br />
@endif
<b>Test Score:</b> {{$enquiry->test_score}}<br /><br />
<b>Marital Status:</b> {{$enquiry->marital_status}}<br /><br />
@if(!is_null($enquiry->married_date))
<b>Married Date:</b> {{$enquiry->married_date}}<br /><br />
@endif
@if(!is_null($enquiry->spouse_academics))
<b>Spouse Academic:</b> {{$enquiry->spouse_academics}}<br /><br />
@endif
@if(!is_null($enquiry->spouse_work_experience))
<b>Spouse Work Experience:</b> {{ $enquiry->spouse_work_experience }}<br /><br />
@endif
@if(!is_null($enquiry->spouse_salary_mode))
<b>Spouse Salary Mode:</b> {{ $enquiry->spouse_salary_mode }}<br /><br />
@endif
@if(!is_null($enquiry->immigration_history))
<b>Immigration History:</b> {{ $enquiry->immigration_history }}<br /><br />
@endif
@if(!is_null($enquiry->desired_study_field))
<b>Desired Field of Study:</b> {{ $enquiry->desired_study_field }}<br /><br />
@endif
@if(!is_null($enquiry->desired_location))
<b>Desired Location:</b> {{ config('custom.states')[$enquiry->desired_location] }}<br /><br />
@endif
</div>
</div>

@ -52,7 +52,7 @@
<img src="{{url('frontend/icons/email.png')}}" class="img-fluid"/> <img src="{{url('frontend/icons/email.png')}}" class="img-fluid"/>
<span><a href="mailto:{{$email}}" class="text-decoration-none">{{$email}}</a></span></i> <span><a href="mailto:{{$email}}" class="text-decoration-none">{{$email}}</a></span></i>
</div> </div>
@endif @endif
@if($phone != '') @if($phone != '')
<div class="contact-info-icons"> <div class="contact-info-icons">
<img src="{{url('frontend/icons/phone.png')}}" class="img-fluid"/> <img src="{{url('frontend/icons/phone.png')}}" class="img-fluid"/>
@ -62,20 +62,20 @@
</div> </div>
<div class="social-links d-none d-md-flex align-items-center"> <div class="social-links d-none d-md-flex align-items-center">
<div class="top-links"> <div class="top-links">
{{-- <a href="/login" target="_blank">login</a> | <a href="/signup" target="_blank">Signup</a> --}} <a href="/enquiry">Enquiry</a>
<h2>Find us on</h2> <h2>Find us on</h2>
</div> </div>
<div class="top-socials"> <div class="top-socials">
<!-- <a href="#" class="twitter"><i class="bi bi-twitter"></i></a> --> <!-- <a href="#" class="twitter"><i class="bi bi-twitter"></i></a> -->
@if($facebook != '') @if($facebook != '')
<a href="{{$facebook}}" target="_blank" class="facebook"><i class="fa-brands fa-facebook"></i></a> <a href="{{$facebook}}" target="_blank" class="facebook"><i class="fa-brands fa-facebook"></i></a>
@endif @endif
@if($instagram != '') @if($instagram != '')
<a href="{{$instagram}}" target="_blank" class="instagram"><i class="fa-brands fa-instagram"></i></a> <a href="{{$instagram}}" target="_blank" class="instagram"><i class="fa-brands fa-instagram"></i></a>
@endif @endif
@if($linkedin != '') @if($linkedin != '')
<a href="{{$linkedin}}" target="_blank" class="linkdin"><i class="fa-brands fa-linkedin"></i></a> <a href="{{$linkedin}}" target="_blank" class="linkdin"><i class="fa-brands fa-linkedin"></i></a>
@endif @endif
<!-- <a href="#" class="linkedin"><i class="bi bi-linkedin"></i></i></a> --> <!-- <a href="#" class="linkedin"><i class="bi bi-linkedin"></i></i></a> -->
</div> </div>
</div> </div>
@ -98,7 +98,7 @@
<li> <li>
@foreach($services as $service) @foreach($services as $service)
<a class="dropdown-item" href="{{url('education/'.$service->slug)}}">{{$service->name}}</a> <a class="dropdown-item" href="{{url('education/'.$service->slug)}}">{{$service->name}}</a>
@endforeach @endforeach
</li> </li>
</ul> </ul>
</li> </li>
@ -110,12 +110,12 @@
<li> <li>
@foreach($visas as $visa) @foreach($visas as $visa)
<a class="dropdown-item" href="{{url('visa/'.$visa->slug)}}">{{$visa->name}}</a> <a class="dropdown-item" href="{{url('visa/'.$visa->slug)}}">{{$visa->name}}</a>
@endforeach @endforeach
</li> </li>
</ul> </ul>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('/blogs')}}">BLOG</a> <a class="nav-link" href="{{url('/blogs')}}">BLOGS</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('contact')}}">CONTACT</a> <a class="nav-link" href="{{url('contact')}}">CONTACT</a>
@ -238,17 +238,17 @@
<a href="{{$facebook}}" target="_blank" class="text-white" rel="noreferrer"> <a href="{{$facebook}}" target="_blank" class="text-white" rel="noreferrer">
<i class="fa-brands fa-facebook fa-xl"></i> <i class="fa-brands fa-facebook fa-xl"></i>
</a> </a>
@endif @endif
@if($instagram != '') @if($instagram != '')
<a href="{{$instagram}}" target="_blank" class="text-white" rel="noreferrer"> <a href="{{$instagram}}" target="_blank" class="text-white" rel="noreferrer">
<i class="fa-brands fa-instagram fa-xl"></i> <i class="fa-brands fa-instagram fa-xl"></i>
</a> </a>
@endif @endif
@if($linkedin != '') @if($linkedin != '')
<a href="{{$linkedin}}" target="_blank" class="text-white" rel="noreferrer"> <a href="{{$linkedin}}" target="_blank" class="text-white" rel="noreferrer">
<i class="fa-brands fa-linkedin fa-xl"></i> <i class="fa-brands fa-linkedin fa-xl"></i>
</a> </a>
@endif @endif
</div> </div>
</div> </div>
</div> </div>
@ -258,7 +258,7 @@
<div class="bottom-footer text-center p-3" > <div class="bottom-footer text-center p-3" >
<div class='row footer-text'> <div class='row footer-text'>
<p class='col-md-4'>ET Education and Visa Services © 2023. All Rights Reserved. </p> <p class='col-md-4'>ET Education and Visa Services © 2023. All Rights Reserved. </p>
<p class='col-md-4 policy'><a >Disclaimer</a> | <a >Privacy Policy</a> | <a >Feedback and Complaints</a></p> <p class='col-md-4 policy'><a >Disclaimer</a> | <a href="privacy_policy">Privacy Policy</a> | <a >Feedback and Complaints</a></p>
<p class='col-md-4'>Designed & Developed By: <a target="-blank" rel="noreferrer" href="https://www.extratechs.com.au/">Extratech</a></p> <p class='col-md-4'>Designed & Developed By: <a target="-blank" rel="noreferrer" href="https://www.extratechs.com.au/">Extratech</a></p>
</div> </div>
</div> </div>
@ -340,5 +340,45 @@
} }
} }
</script> </script>
<!--Whatsapp-->
<script>
var fullPath1 = window.location.href;
var url = 'https://wati-integration-service.clare.ai/ShopifyWidget/shopifyWidget.js?69991';
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = url;
var options = {
"enabled":true,
"chatButtonSetting":{
"backgroundColor":"#4dc247",
"ctaText":"",
"borderRadius":"25",
"marginLeft":"30",
"marginBottom":"30",
"marginRight":"30",
"position":"right"
},
"brandSetting":{
"brandName":"ET Education | Visa",
"brandSubTitle":"Online",
"brandImg":"{{url('images/ET-Education.jpg')}}",
"welcomeText":"👋 Want to chat about ET Education?\n I'm here to help you find your way.",
"messageText":"Hello, I have a question about",
"backgroundColor":"#0a5f54",
"ctaText":"Start Chat",
"borderRadius":"25",
"autoShow":true,
"phoneNumber":"+61405978672"
}
};
s.onload = function() {
CreateWhatsappChatWidget(options);
$('.wa-chat-box-poweredby').hide();
};
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
</script>
</html> </html>

@ -0,0 +1,166 @@
@extends('layout.app')
@section('title')
<title>Privacy Policy</title>
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection
@section('content')
<section class="privacy-policy-section">
<h1>Privacy Policy</h1>
<p>At ET Education & Visa Services, we are committed to protecting the privacy and confidentiality of our client’s personal information. This Privacy Policy outlines the types of information we collect, how we use and safeguard this information, and your rights to access and control your information.
When you provide personal information to ET Education & Visa Services, you are giving your consent to the collection, use, and disclosure of your personal information as per this Privacy Policy and any other agreements between you and ET Education & Visa Services.
<br><br>
ET Education & Visa Services reserves the right to modify this Privacy Policy from time to time by publishing the changes on the Website. We recommend that you periodically visit the Website to stay updated with the current Privacy Policy of ET Education & Visa Services.
If you use the Website after any changes have been made to the Privacy Policy, you will be considered to have given your consent to those changes.
</p>
<div class="definition-policy">
<h2>Definitions</h2>
In this Privacy Policy:
<ul>
<li>"Personal information" means information that can be associated with a specific person and can be used to identify that person and includes your information and the types of information described in this Privacy Policy.</li>
<li>"Privacy Policy" means this privacy policy (as amended from time to time).</li>
<li>"ET Education & Visa Services," "we," "us," or "our" means ET Education & Visa Services and its associated entities.</li>
<li>"Specific Service" means any service, product, or good provided by ET Education & Visa Services, including but not limited to visa and immigration-related services and enrolment or recruitment-related services.</li>
<li>"Website" means the website provided by ET Education & Visa Services, which allows you to view, order, or otherwise deal with the services, products or goods provided or offered by ET Education & Visa Services.</li>
</ul>
</div>
<div class="personal-policy">
<h2>Collection of Personal Information</h2>
We may collect the following types of personal information from our clients:
<ol>
<li>Contact information, such as name, email address, phone number, and mailing address.</li>
<li>Demographic information, such as date of birth, nationality, and gender.</li>
<li>Educational information, such as academic records, transcripts, and degrees.</li>
<li>Visa-related information, such as passport number, visa application documents, and travel history.</li>
<li>Financial information, such as payment details and bank account information.</li>
<li>Your device ID, device type, geo-location information, computer and connection information, statistics on page views, traffic to and from the sites, ad data, IP address, standard web log information and page interaction information</li>
<li>Any additional information relating to you that you provide to ET Education & Visa Services directly through the Website or indirectly through your use of the Website or through other websites or accounts from which you permit ET Education & Visa Services to collect information.</li>
<li>Information you provide to ET Education & Visa Services (or its agents or representatives) through customer surveys.</li>
<li>Personal information based on your activities on the Website.</li>
<li>Any other personal information required to facilitate your dealings with ET Education & Visa Services.</li>
<li>We will only collect sensitive personal information about you if we have your express or implied consent or if the law otherwise permits it. The types of sensitive information that we may collect include:</li>
<ul>
<li>Racial or ethnic origin</li>
<li>Political opinions</li>
<li>Criminal record</li>
<li>Financial situation (including income or remuneration details)</li>
<li>Health and medical information relating to your current and previous health status, medical conditions, and dietary requirements (where applicable)</li>
</ul>
<li>ET Education & Visa Services may collect personal information when you:</li>
<ul>
<li>Register on or make use of the Website.</li>
<li>Request a service, product or good from ET Education & Visa Services</li>
<li>Communicate with ET Education & Visa Services through correspondence, chats, email, or when you share information with ET Education & Visa Services from other social applications, services, or websites.</li>
</ul>
<li>When you provide your personal information to ET Education & Visa Services to request a service or product from us (or our representatives or agents), your contact details may be retained even if the transaction is not completed.</li>
<li>ET Education & Visa Services may retain your contact information, even if a transaction still needs to be completed when you provide your personal information to request a service or product from us or our representatives or agents. These details are captured securely.</li>
If you provide us with sensitive information, we will only retain such information under the following circumstances:
<ul>
<li>You have given consent for us to collect the information directly related to one of our functions, services, or activities.</li>
<li>Information collection is required or authorised by Australian law, a court/tribunal order.</li>
<li>Information collection is authorised for other purposes allowed under the Privacy Act, such as when we suspect unlawful activity or serious misconduct related to our functions, services, or activities has been, is being, or may be engaged in.</li>
</ul>
</ol>
</div>
<div class="personal-policy">
<h2>Use of Personal Information</h2>
We use the personal information we collect to provide services to our clients, including but not limited to the following:
<ol>
<li>To contact you and conduct our business or provide you with services or products requested.</li>
<li>To allow you to use and access our website.</li>
<li>To operate, protect, improve, and optimise our website and experiences, such as performing analytics, conducting research, and advertising and marketing.</li>
<li>To send you administrative, service, and support messages, as well as reminders, updates, and security alerts.</li>
<li>To send you the information requested by you.</li>
<li>To prepare and lodge visa applications, university and college applications, and other enrolment applications.</li>
<li>To provide information to migration agents, educational institutions or bodies, Department of Home Affairs or similar bodies or institutions, where required or permitted by law.</li>
<li>To send you marketing and promotional messages and other information that may interest you.</li>
<li>To detect, investigate and prevent potentially unlawful acts or omissions, or acts or omissions with the potential to breach our terms and conditions, this Privacy Policy, or other policies or arrangements between you and us.</li>
<li>To verify the information for accuracy or completeness (including by way of verification with third parties).</li>
<li>To comply with our legal obligations, resolve any disputes we may have with any of our customers or you, and enforce our agreements with you or any third parties.</li>
<li>To manage our relationship with you, including providing you with updates about the services or products that you have requested from us or responding to your enquiries.</li>
<li>For other purposes directed by you; and purposes authorised under an Australian law or to ensure that we comply with our obligations under European Union Member State law (if relevant)</li>
</ol>
</div>
<div class="personal-policy">
<h2>Access and Control of Personal Information</h2>
You may access the personal information we hold about you by contacting us using the information on our website.
<ol>
<li>We may need to verify your identity when you request personal information. However, there may be instances where we need help to provide access to all your personal information. We will notify you of any reason why access is denied. Within 30 days of your request, we will make every effort to grant access.</li>
<li>Clients have the right to access, modify, or delete their personal information by contacting us at the address below. Clients may also withdraw their consent to our collection, use, or disclosure of their personal information at any time, subject to legal or contractual obligations.</li>
</ol>
</div>
<div class="personal-policy">
<h2>Failure to Provide Personal Information:</h2>
You are not obliged to give us your personal information. We might be unable to provide you with the requested service if you decide not to give us the necessary personal information.
Sharing of Personal Information:
<ol>
<li>We may disclose personal information for the purposes described in this Privacy Policy to third parties such as the Department of Home Affairs, educational institutions, our employees and related bodies corporate, third-party suppliers and service providers, contractors, professional advisers or consultants, dealers and agents, web hosting providers, IT systems administrators, debt collectors, and payment systems operators.</li>
<li>We may also disclose your personal information to existing or potential agents, business partners, or sponsors, as well as to government agencies, regulatory bodies, and law enforcement agencies, or as required, authorised or permitted by law.</li>
<li>We may disclose personal information to third-party businesses located overseas and other countries referred to on our website.</li>
<li>Where you provide us with your personal information for a specific service, we may be required to provide such personal information to visa/immigration or enrolment/recruitment providers.</li>
<li>We have limited control over how these providers use, disclose, or store personal information. You should ensure you understand and agree with their privacy practices before providing us your personal information.</li>
<li>We do not sell or rent personal information to third parties, and we do not disclose personal information for marketing purposes without explicit consent from our clients.</li>
</ol>
</div>
<div class="row personal-policy">
<div class="col-md-6">
<h2>Opting Out:</h2>
<ol>
<li>We may send you direct marketing communications and information about our services and products. You may opt out of receiving marketing materials from us by contacting us using the details on our website or clicking the unsubscribe link at the bottom of our emails.</li>
<li> We take all reasonable steps to protect your personal information from misuse, loss, unauthorised access, modification, or disclosure. If you have any questions about this policy, please get in touch with us using the information on our website.</li>
</ol>
</div>
<div class="col-md-6">
<h2>Using our Website and Cookies</h2>
<ol>
<li>ET Education & Visa Services may collect personal information about you.</li>
<li>While we do not use browsing information to identify you personally, we may record certain information about your use of the website, such as which pages you visit, the time and date of your visit, and the internet protocol address assigned to your device.</li>
<li>We may use "cookies" or similar tracking technologies on the website to track your usage and remember your preferences. Cookies are small files that store information on your device and enable us to recognise you across different websites, services, devices, and/or browsing sessions. If you disable cookies through your internet browser, the website may not work as intended for you.</li>
<li>By using our website, you agree to ET Education & Visa Services placing cookies on your device and accessing them when you visit the website in the future.</li>
</ol>
</div>
</div>
<div class="personal-policy">
<h2>Links to Third-Party Websites</h2>
<ol>
<li>Our website might connect to external links, micro-sites, or analytics tools (like Google) that are not under ET Education & Visa Services' control or ownership. These links are provided solely for your convenience ("Third Party Websites"), and we do not warrant the accuracy or safety of these websites.</li>
<li>You are responsible for checking the policies and practices of Third-Party Websites before using them.</li>
<li>You acknowledge and agree that:</li>
<ul>
<li>To the extent permitted by law, ET Education & Visa Services is not liable for any loss, expense, or cost suffered by you as a result of your use of Third-Party Websites.</li>
<li>ET Education & Visa Services is not responsible for any Third-Party Website's privacy policies or content.</li>
</ul>
</ol>
</div>
<div class="row personal-policy">
<div class="col-md-6">
<h2>Protection of Personal Information</h2>
<p>We take reasonable measures to safeguard the personal information we collect from unauthorised access, use, or disclosure. We use physical, electronic, and administrative security measures to protect our client’s information and regularly review and update our security procedures.</p>
</div>
<div class="col-md-6">
<h2>Changes to Privacy Policy</h2>
<p>We may periodically update this privacy policy to reflect business practices or legal requirements changes. We will notify clients of any material changes to this Policy and obtain their consent where required.</p>
</div>
</div>
<div class="contact-policy">
<h2>Contact Information</h2>
<p>If you have any questions or concerns about our Privacy Policy or the collection, use, or disclosure of your personal information, please contact us at:</p>
<ul>
<li>ET Education & Visa Services</li>
<li><a href="https://goo.gl/maps/SFPf7MtojQ7yK9Nc9" target="_blank">Sydney Suite 132 & 133, Level 3, 10 Park Road, Hurstville NSW 2220</a></li>
<li>Email: <a href="mailto: admin@eteducation.com.au">admin@eteducation.com.au</a></li>
<li> Phone: <a href="telto: +61 02 9171 7740">+61 02 9171 7740</a></li>
</ul>
</div>
</section>
@endsection

@ -4,7 +4,7 @@
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."> <meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="robots" content="index, follow" /> <meta name="robots" content="index, follow" />
<meta property="og:url" content="" /> <meta property="og:url" content="" />
<meta property="og:image" content="{{url($sliders->first()->image)}}"/> <meta property="og:image" content="{{url($sliders->first()->image ?? '')}}"/>
<meta property="og:title" content="ET-Visas"/> <meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/> <meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection @endsection
@ -96,7 +96,7 @@
</div> </div>
<div class="service-card"> <div class="service-card">
<div class="service-icon"> <div class="service-icon">
<img src="{{url('frontend/icons/ribbon.png')}}" alt=""> <img src="{{url('frontend/icons/jrp.png')}}" alt="">
</div> </div>
<h2>Job Ready Program</h2> <h2>Job Ready Program</h2>
<p>Get into the job market with a correct set of skills.</p> <p>Get into the job market with a correct set of skills.</p>
@ -106,7 +106,7 @@
<div class="services-slider"> <div class="services-slider">
<div class="service-card"> <div class="service-card">
<div class="service-icon"> <div class="service-icon">
<img src="{{url('frontend/icons/ribbon.png')}}" alt=""> <img src="{{url('frontend/icons/career-counselling.png')}}" alt="">
</div> </div>
<h2>Career Counselling</h2> <h2>Career Counselling</h2>
<p>Get the right guidance to leap through your career.</p> <p>Get the right guidance to leap through your career.</p>
@ -124,7 +124,7 @@
<div class="services-slider"> <div class="services-slider">
<div class="service-card"> <div class="service-card">
<div class="service-icon"> <div class="service-icon">
<img src="{{url('frontend/icons/abroad-icon.png')}}" alt=""> <img src="{{url('frontend/icons/account-student.png')}}" alt="">
</div> </div>
<h2>Student Visa</h2> <h2>Student Visa</h2>
<p>Visit Australia to participate in the course of study.</p> <p>Visit Australia to participate in the course of study.</p>
@ -207,7 +207,7 @@
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="row g-4 review-row"> <div class="row g-4 review-row">
<div class="review-cards"> <div class="review-cards">
@foreach($testimonials as $testimonial) @foreach($testimonials as $testimonial)
<div class="col-md-6"> <div class="col-md-6">
<div class="review-card"> <div class="review-card">
@ -261,7 +261,7 @@
</div> </div>
</div> </div>
</div> --> </div> -->
</div> </div>
</div> </div>
</div> </div>
</div> </div>
@ -272,7 +272,7 @@
<p>Get the updates about moving to Australia with the right guidance and information from our experts.</p> <p>Get the updates about moving to Australia with the right guidance and information from our experts.</p>
</div> </div>
<div class="row"> <div class="row">
@foreach($blogs as $blog) @foreach($blogs->take(3) as $blog)
<div class="col-md-4 col-sm-12"> <div class="col-md-4 col-sm-12">
<a href="{{url('blog/'.$blog->slug)}}" class="text-decoration-none"> <a href="{{url('blog/'.$blog->slug)}}" class="text-decoration-none">
<div class="blog-card"> <div class="blog-card">
@ -293,7 +293,7 @@
</a> </a>
</div> </div>
@endforeach @endforeach
</div> </div>
</section> </section>
@endsection @endsection
@ -316,8 +316,7 @@
settings: { settings: {
slidesToShow: 1, slidesToShow: 1,
slidesToScroll: 1, slidesToScroll: 1,
infinite: true, infinite: true
dots: false
} }
}, },
{ {
@ -338,4 +337,4 @@
}); });
}); });
</script> </script>
@endsection @endsection

@ -39,9 +39,11 @@ use App\Http\Controllers\Admin\SeoTitleController;
use App\Http\Controllers\Admin\VisaServiceController; use App\Http\Controllers\Admin\VisaServiceController;
use App\Http\Controllers\Admin\FaqController; use App\Http\Controllers\Admin\FaqController;
use App\Http\Controllers\Admin\VisaServiceSectionController; use App\Http\Controllers\Admin\VisaServiceSectionController;
use App\Models\Country;
use App\Http\Controllers\Admin\TeamController; use App\Http\Controllers\Admin\TeamController;
use App\Http\Controllers\Admin\AppointmentController; use App\Http\Controllers\Admin\AppointmentController;
use App\Http\Controllers\EnquiryController;
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -54,51 +56,53 @@ use App\Http\Controllers\Admin\AppointmentController;
| |
*/ */
Route::get('/', [HomeController::class,'index'])->name('home.index'); Route::get('/mycron', [HomeController::class, 'runQueueJobs']);
Route::get('/seed', [HomeController::class, 'runSeeder']);
Route::get('/', [HomeController::class, 'index'])->name('home.index');
Route::get('login', [HomeAdminController::class,'getLogin'])->name('login'); Route::get('login', [HomeAdminController::class, 'getLogin'])->name('login');
Route::post('login', [HomeAdminController::class,'postLogin']); Route::post('login', [HomeAdminController::class, 'postLogin']);
Route::get('study-abroad', [StudyAbroadController::class,'study_abroad']); Route::get('study-abroad', [StudyAbroadController::class, 'study_abroad']);
Route::get('/education/{slug}', [StudyAbroadController::class,'details']); Route::get('/education/{slug}', [StudyAbroadController::class, 'details']);
Route::get('/visa/{slug}', [VisaController::class,'details']); Route::get('/visa/{slug}', [VisaController::class, 'details']);
// Route::get('/study-abroad-detail', function () { // Route::get('/study-abroad-detail', function () {
// return view('study-abroad-detail'); // return view('study-abroad-detail');
// }); // });
// Route::get('visas', [VisaController::class,'index']); // Route::get('visas', [VisaController::class,'index']);
Route::get('contact', [ContactController::class,'index']); Route::get('contact', [ContactController::class, 'index']);
Route::post('contact', [ContactController::class,'post_contact']); Route::post('contact', [ContactController::class, 'post_contact']);
Route::get('about', [FrontendAboutUsController::class,'index']); Route::get('about', [FrontendAboutUsController::class, 'index']);
Route::get('appointment', [FrontendAppointmentController::class,'index']); Route::get('appointment', [FrontendAppointmentController::class, 'index']);
Route::post('appointments_by_date', [FrontendAppointmentController::class,'get_appointment_by_date']); Route::post('appointments_by_date', [FrontendAppointmentController::class, 'get_appointment_by_date']);
Route::post('appointment_submit', [FrontendAppointmentController::class,'form_submit']); Route::post('appointment_submit', [FrontendAppointmentController::class, 'form_submit']);
// Route::get('/about', function () { // Route::get('/about', function () {
// return view('about'); // return view('about');
// }); // });
Route::get('blogs', [BlogController::class,'index']); Route::get('blogs', [BlogController::class, 'index']);
Route::get('blog/{slug}', [BlogController::class,'blog_detail']); Route::get('blog/{slug}', [BlogController::class, 'blog_detail']);
Route::get('faqs', [FrontendFaqController::class,'index']); Route::get('faqs', [FrontendFaqController::class, 'index']);
Route::post('image-upload', [ImageUploadController::class, 'storeImage'])->name('image.upload'); //upload image in CkEditor Route::post('image-upload', [ImageUploadController::class, 'storeImage'])->name('image.upload'); //upload image in CkEditor
Route::post('/subscribe', [HomeController::class, 'subscribe']); Route::post('/subscribe', [HomeController::class, 'subscribe']);
Route::group(['middleware'=>['auth']],function (){ Route::group(['middleware' => ['auth']], function () {
//routes for admin //routes for admin
Route::group(['prefix'=>'admin'],function (){ Route::group(['prefix' => 'admin'], function () {
Route::get('logout', [HomeAdminController::class,'getLogout']); Route::get('logout', [HomeAdminController::class, 'getLogout']);
Route::get('/index', [HomeAdminController::class,'indexAdmin']); Route::get('/index', [HomeAdminController::class, 'indexAdmin']);
Route::get('/change_password', [HomeAdminController::class,'change_password']); Route::get('/change_password', [HomeAdminController::class, 'change_password']);
Route::post('/change_password', [HomeAdminController::class,'update_password']); Route::post('/change_password', [HomeAdminController::class, 'update_password']);
Route::get('settings',[SettingController::class,'index']); Route::get('settings', [SettingController::class, 'index']);
Route::get('settings/create',[SettingController::class,'create']); Route::get('settings/create', [SettingController::class, 'create']);
Route::post('settings',[SettingController::class,'store']); Route::post('settings', [SettingController::class, 'store']);
Route::get('settings/{id}',[SettingController::class,'show']); Route::get('settings/{id}', [SettingController::class, 'show']);
Route::get('settings/{id}/edit',[SettingController::class,'edit']); Route::get('settings/{id}/edit', [SettingController::class, 'edit']);
Route::post('settings/{id}',[SettingController::class,'update']); Route::post('settings/{id}', [SettingController::class, 'update']);
Route::get('settings/{id}/delete',[SettingController::class,'delete']); Route::get('settings/{id}/delete', [SettingController::class, 'delete']);
// Route::get('service',[ServiceController::class,'index']); // Route::get('service',[ServiceController::class,'index']);
@ -108,188 +112,186 @@ Route::group(['middleware'=>['auth']],function (){
// Route::post('service/{id}/update',[ServiceController::class,'update']); // Route::post('service/{id}/update',[ServiceController::class,'update']);
// Route::get('service/{id}/delete',[ServiceController::class,'delete']); // Route::get('service/{id}/delete',[ServiceController::class,'delete']);
Route::get('sliders',[SliderController::class,'index']); Route::get('sliders', [SliderController::class, 'index']);
Route::get('sliders/create',[SliderController::class,'create']); Route::get('sliders/create', [SliderController::class, 'create']);
Route::post('sliders',[SliderController::class,'store']); Route::post('sliders', [SliderController::class, 'store']);
Route::get('sliders/{id}/view',[SliderController::class,'show']); Route::get('sliders/{id}/view', [SliderController::class, 'show']);
Route::get('sliders/{id}/edit',[SliderController::class,'edit']); Route::get('sliders/{id}/edit', [SliderController::class, 'edit']);
Route::post('sliders/{id}',[SliderController::class,'update']); Route::post('sliders/{id}', [SliderController::class, 'update']);
Route::get('sliders/{id}/delete',[SliderController::class,'destroy']); Route::get('sliders/{id}/delete', [SliderController::class, 'destroy']);
Route::resource('about_us',AboutUsController::class); Route::resource('about_us', AboutUsController::class);
Route::get('pages',[PageController::class,'index']); Route::get('pages', [PageController::class, 'index']);
Route::get('pages/create',[PageController::class,'create']); Route::get('pages/create', [PageController::class, 'create']);
Route::post('pages',[PageController::class,'store']); Route::post('pages', [PageController::class, 'store']);
Route::get('pages/{id}/view',[PageController::class,'show']); Route::get('pages/{id}/view', [PageController::class, 'show']);
Route::get('pages/{id}/edit',[PageController::class,'edit']); Route::get('pages/{id}/edit', [PageController::class, 'edit']);
Route::post('pages/{id}',[PageController::class,'update']); Route::post('pages/{id}', [PageController::class, 'update']);
Route::get('pages/{id}/delete',[PageController::class,'destroy']); Route::get('pages/{id}/delete', [PageController::class, 'destroy']);
Route::get('blogs',[NewsAndUpdateController::class,'index']); Route::get('blogs', [NewsAndUpdateController::class, 'index']);
Route::get('blogs/create',[NewsAndUpdateController::class,'create']); Route::get('blogs/create', [NewsAndUpdateController::class, 'create']);
Route::post('blogs',[NewsAndUpdateController::class,'store']); Route::post('blogs', [NewsAndUpdateController::class, 'store']);
Route::get('blogs/{id}',[NewsAndUpdateController::class,'show']); Route::get('blogs/{id}', [NewsAndUpdateController::class, 'show']);
Route::get('blogs/{id}/edit',[NewsAndUpdateController::class,'edit']); Route::get('blogs/{id}/edit', [NewsAndUpdateController::class, 'edit']);
Route::post('blogs/{id}',[NewsAndUpdateController::class,'update']); Route::post('blogs/{id}', [NewsAndUpdateController::class, 'update']);
Route::get('blogs/delete/{id}',[NewsAndUpdateController::class,'delete']); Route::get('blogs/delete/{id}', [NewsAndUpdateController::class, 'delete']);
// Route::get('blog_point/{blog_point_id}',[BlogController::class,'blog_point']); // Route::get('blog_point/{blog_point_id}',[BlogController::class,'blog_point']);
Route::get('galleries',[GalleryController::class,'index']); Route::get('galleries', [GalleryController::class, 'index']);
Route::get('galleries/create',[GalleryController::class,'create']); Route::get('galleries/create', [GalleryController::class, 'create']);
Route::post('galleries',[GalleryController::class,'store']); Route::post('galleries', [GalleryController::class, 'store']);
Route::get('galleries/{id}',[GalleryController::class,'show']); Route::get('galleries/{id}', [GalleryController::class, 'show']);
Route::get('galleries/{id}/edit',[GalleryController::class,'edit']); Route::get('galleries/{id}/edit', [GalleryController::class, 'edit']);
Route::post('galleries/{id}',[GalleryController::class,'update']); Route::post('galleries/{id}', [GalleryController::class, 'update']);
Route::get('galleries/delete/{id}',[GalleryController::class,'delete']); Route::get('galleries/delete/{id}', [GalleryController::class, 'delete']);
Route::get('referrals',[ReferralAdminController::class,'index']); Route::get('referrals', [ReferralAdminController::class, 'index']);
Route::get('referrals/create',[ReferralAdminController::class,'create']); Route::get('referrals/create', [ReferralAdminController::class, 'create']);
Route::post('referrals/store',[ReferralAdminController::class,'store']); Route::post('referrals/store', [ReferralAdminController::class, 'store']);
Route::get('referrals/{id}/view',[ReferralAdminController::class,'show']); Route::get('referrals/{id}/view', [ReferralAdminController::class, 'show']);
Route::post('referrals/{id}/update',[ReferralAdminController::class,'update']); Route::post('referrals/{id}/update', [ReferralAdminController::class, 'update']);
Route::get('referrals/{id}/delete',[ReferralAdminController::class,'delete']); Route::get('referrals/{id}/delete', [ReferralAdminController::class, 'delete']);
Route::get('ndis_pricing',[NdisPricingController::class,'index']); Route::get('ndis_pricing', [NdisPricingController::class, 'index']);
Route::get('ndis_pricing/create',[NdisPricingController::class,'create']); Route::get('ndis_pricing/create', [NdisPricingController::class, 'create']);
Route::post('ndis_pricing',[NdisPricingController::class,'store']); Route::post('ndis_pricing', [NdisPricingController::class, 'store']);
Route::get('ndis_pricing/{id}/view',[NdisPricingController::class,'show']); Route::get('ndis_pricing/{id}/view', [NdisPricingController::class, 'show']);
Route::get('ndis_pricing/{id}/edit',[NdisPricingController::class,'edit']); Route::get('ndis_pricing/{id}/edit', [NdisPricingController::class, 'edit']);
Route::post('ndis_pricing/{id}',[NdisPricingController::class,'update']); Route::post('ndis_pricing/{id}', [NdisPricingController::class, 'update']);
Route::get('ndis_pricing/{id}/delete',[NdisPricingController::class,'destroy']); Route::get('ndis_pricing/{id}/delete', [NdisPricingController::class, 'destroy']);
Route::get('sub_offices',[SubOfficeController::class,'index']); Route::get('sub_offices', [SubOfficeController::class, 'index']);
Route::get('sub_offices/create',[SubOfficeController::class,'create']); Route::get('sub_offices/create', [SubOfficeController::class, 'create']);
Route::post('sub_offices',[SubOfficeController::class,'store']); Route::post('sub_offices', [SubOfficeController::class, 'store']);
Route::get('sub_offices/{id}/edit',[SubOfficeController::class,'edit']); Route::get('sub_offices/{id}/edit', [SubOfficeController::class, 'edit']);
Route::post('sub_offices/{id}',[SubOfficeController::class,'update']); Route::post('sub_offices/{id}', [SubOfficeController::class, 'update']);
Route::get('sub_offices_delete/{id}',[SubOfficeController::class,'delete']); Route::get('sub_offices_delete/{id}', [SubOfficeController::class, 'delete']);
Route::get('departments',[DepartmentController::class,'index']); Route::get('departments', [DepartmentController::class, 'index']);
Route::get('departments/create',[DepartmentController::class,'create']); Route::get('departments/create', [DepartmentController::class, 'create']);
Route::post('departments/store',[DepartmentController::class,'store']); Route::post('departments/store', [DepartmentController::class, 'store']);
Route::get('departments/{id}/edit',[DepartmentController::class,'edit']); Route::get('departments/{id}/edit', [DepartmentController::class, 'edit']);
Route::post('departments/{id}',[DepartmentController::class,'update']); Route::post('departments/{id}', [DepartmentController::class, 'update']);
Route::get('departments/{id}/delete',[DepartmentController::class,'delete']); Route::get('departments/{id}/delete', [DepartmentController::class, 'delete']);
Route::get('services',[ServiceController::class,'index']); Route::get('services', [ServiceController::class, 'index']);
Route::get('services/create',[ServiceController::class,'create']); Route::get('services/create', [ServiceController::class, 'create']);
Route::post('service',[ServiceController::class,'store']); Route::post('service', [ServiceController::class, 'store']);
Route::get('services/{id}/edit',[ServiceController::class,'edit']); Route::get('services/{id}/edit', [ServiceController::class, 'edit']);
Route::get('services/{id}/view',[ServiceController::class,'show']); Route::get('services/{id}/view', [ServiceController::class, 'show']);
Route::post('services/{id}',[ServiceController::class,'update']); Route::post('services/{id}', [ServiceController::class, 'update']);
Route::get('services/{id}/delete',[ServiceController::class,'delete']); Route::get('services/{id}/delete', [ServiceController::class, 'delete']);
// Route::get('service_point/{service_point_id}',[ServiceController::class,'service_point']); // Route::get('service_point/{service_point_id}',[ServiceController::class,'service_point']);
Route::get('services/{id}/sections',[ServiceSectionController::class,'index']); Route::get('services/{id}/sections', [ServiceSectionController::class, 'index']);
Route::get('services/{id}/section/create',[ServiceSectionController::class,'create']); Route::get('services/{id}/section/create', [ServiceSectionController::class, 'create']);
Route::post('service/{id}/section',[ServiceSectionController::class,'store']); Route::post('service/{id}/section', [ServiceSectionController::class, 'store']);
Route::get('services/{id}/section/{secId}/edit',[ServiceSectionController::class,'edit']); Route::get('services/{id}/section/{secId}/edit', [ServiceSectionController::class, 'edit']);
Route::get('services/{id}/section/{secId}/view',[ServiceSectionController::class,'show']); Route::get('services/{id}/section/{secId}/view', [ServiceSectionController::class, 'show']);
Route::post('services/{id}/section/{secId}',[ServiceSectionController::class,'update']); Route::post('services/{id}/section/{secId}', [ServiceSectionController::class, 'update']);
Route::get('services/{id}/section/delete',[ServiceSectionController::class,'delete']); Route::get('services/{id}/section/delete', [ServiceSectionController::class, 'delete']);
Route::get('service_point/{service_point_id}',[ServiceSectionController::class,'service_point']); Route::get('service_point/{service_point_id}', [ServiceSectionController::class, 'service_point']);
Route::get('visa_services',[VisaServiceController::class,'index']); Route::get('visa_services', [VisaServiceController::class, 'index']);
Route::get('visa_services/create',[VisaServiceController::class,'create']); Route::get('visa_services/create', [VisaServiceController::class, 'create']);
Route::post('visa_service',[VisaServiceController::class,'store']); Route::post('visa_service', [VisaServiceController::class, 'store']);
Route::get('visa_services/{id}/edit',[VisaServiceController::class,'edit']); Route::get('visa_services/{id}/edit', [VisaServiceController::class, 'edit']);
Route::get('visa_services/{id}/view',[VisaServiceController::class,'show']); Route::get('visa_services/{id}/view', [VisaServiceController::class, 'show']);
Route::post('visa_services/{id}',[VisaServiceController::class,'update']); Route::post('visa_services/{id}', [VisaServiceController::class, 'update']);
Route::get('visa_services/{id}/delete',[VisaServiceController::class,'delete']); Route::get('visa_services/{id}/delete', [VisaServiceController::class, 'delete']);
// Route::get('service_section_point/{service_point_id}',[VisaServiceController::class,'service_point']); // Route::get('service_section_point/{service_point_id}',[VisaServiceController::class,'service_point']);
Route::get('visa_services/{id}/sections',[VisaServiceSectionController::class,'index']); Route::get('visa_services/{id}/sections', [VisaServiceSectionController::class, 'index']);
Route::get('visa_services/{id}/section/create',[VisaServiceSectionController::class,'create']); Route::get('visa_services/{id}/section/create', [VisaServiceSectionController::class, 'create']);
Route::post('visa_service/{id}/section',[VisaServiceSectionController::class,'store']); Route::post('visa_service/{id}/section', [VisaServiceSectionController::class, 'store']);
Route::get('visa_services/{id}/section/{secId}/edit',[VisaServiceSectionController::class,'edit']); Route::get('visa_services/{id}/section/{secId}/edit', [VisaServiceSectionController::class, 'edit']);
Route::get('visa_services/{id}/section/{secId}/view',[VisaServiceSectionController::class,'show']); Route::get('visa_services/{id}/section/{secId}/view', [VisaServiceSectionController::class, 'show']);
Route::post('visa_services/{id}/section/{secId}',[VisaServiceSectionController::class,'update']); Route::post('visa_services/{id}/section/{secId}', [VisaServiceSectionController::class, 'update']);
Route::get('visa_services/{id}/section/delete',[VisaServiceSectionController::class,'delete']); Route::get('visa_services/{id}/section/delete', [VisaServiceSectionController::class, 'delete']);
// Route::get('service_point/{service_point_id}',[VisaServiceSectionController::class,'service_point']); // Route::get('service_point/{service_point_id}',[VisaServiceSectionController::class,'service_point']);
Route::get('testimonials',[TestimonialController::class,'index']); Route::get('testimonials', [TestimonialController::class, 'index']);
Route::get('testimonials/create',[TestimonialController::class,'create']); Route::get('testimonials/create', [TestimonialController::class, 'create']);
Route::post('testimonials',[TestimonialController::class,'store']); Route::post('testimonials', [TestimonialController::class, 'store']);
Route::get('testimonials/{id}/edit',[TestimonialController::class,'edit']); Route::get('testimonials/{id}/edit', [TestimonialController::class, 'edit']);
Route::post('testimonials/{id}',[TestimonialController::class,'update']); Route::post('testimonials/{id}', [TestimonialController::class, 'update']);
Route::get('testimonials/{id}',[TestimonialController::class,'show']); Route::get('testimonials/{id}', [TestimonialController::class, 'show']);
Route::get('testimonials/{id}/delete',[TestimonialController::class,'delete']); Route::get('testimonials/{id}/delete', [TestimonialController::class, 'delete']);
Route::get('clients',[ClientController::class,'index']); Route::get('clients', [ClientController::class, 'index']);
Route::get('clients/create',[ClientController::class,'create']); Route::get('clients/create', [ClientController::class, 'create']);
Route::post('clients',[ClientController::class,'store']); Route::post('clients', [ClientController::class, 'store']);
Route::get('clients/{id}/edit',[ClientController::class,'edit']); Route::get('clients/{id}/edit', [ClientController::class, 'edit']);
Route::post('clients/{id}',[ClientController::class,'update']); Route::post('clients/{id}', [ClientController::class, 'update']);
Route::get('faqs',[FaqController::class,'index']); Route::get('faqs', [FaqController::class, 'index']);
Route::get('faqs/create',[FaqController::class,'create']); Route::get('faqs/create', [FaqController::class, 'create']);
Route::post('faqs',[FaqController::class,'store']); Route::post('faqs', [FaqController::class, 'store']);
Route::get('faqs/{id}/edit',[FaqController::class,'edit']); Route::get('faqs/{id}/edit', [FaqController::class, 'edit']);
Route::post('faqs/{id}',[FaqController::class,'update']); Route::post('faqs/{id}', [FaqController::class, 'update']);
Route::get('faqs/{id}',[FaqController::class,'show']); Route::get('faqs/{id}', [FaqController::class, 'show']);
Route::get('add-sections',[AddSectionController::class,'index']); Route::get('add-sections', [AddSectionController::class, 'index']);
Route::get('add-sections/create',[AddSectionController::class,'create']); Route::get('add-sections/create', [AddSectionController::class, 'create']);
Route::post('add-sections',[AddSectionController::class,'store']); Route::post('add-sections', [AddSectionController::class, 'store']);
Route::get('add-sections/{id}/edit',[AddSectionController::class,'edit']); Route::get('add-sections/{id}/edit', [AddSectionController::class, 'edit']);
Route::post('add-sections/{id}',[AddSectionController::class,'update']); Route::post('add-sections/{id}', [AddSectionController::class, 'update']);
Route::get('add-sections/{id}/delete',[AddSectionController::class,'delete']); Route::get('add-sections/{id}/delete', [AddSectionController::class, 'delete']);
Route::get('seo_titles',[SeoTitleController::class,'index']); Route::get('seo_titles', [SeoTitleController::class, 'index']);
Route::get('seo_titles/create',[SeoTitleController::class,'create']); Route::get('seo_titles/create', [SeoTitleController::class, 'create']);
Route::post('seo_titles',[SeoTitleController::class,'store']); Route::post('seo_titles', [SeoTitleController::class, 'store']);
Route::get('seo_titles/{id}/edit',[SeoTitleController::class,'edit']); Route::get('seo_titles/{id}/edit', [SeoTitleController::class, 'edit']);
Route::post('seo_titles/{id}',[SeoTitleController::class,'update']); Route::post('seo_titles/{id}', [SeoTitleController::class, 'update']);
Route::get('seo_titles_delete/{id}',[SeoTitleController::class,'delete']); Route::get('seo_titles_delete/{id}', [SeoTitleController::class, 'delete']);
Route::get('contacts',[ContactUsController::class,'index']); Route::get('contacts', [ContactUsController::class, 'index']);
Route::get('contacts/{id}/view',[ContactUsController::class,'show']); Route::get('contacts/{id}/view', [ContactUsController::class, 'show']);
Route::get('enrollments',[EnrollmentController::class,'index']); Route::get('enquiries', [EnquiryController::class, 'index']);
Route::get('enrollments/{id}/view',[EnrollmentController::class,'show']); Route::get('enquiries/{id}/view', [EnquiryController::class, 'show']);
Route::get('enquiries/{id}/delete', [EnquiryController::class, 'delete']);
Route::get('teams',[TeamController::class,'index']);
Route::get('teams/create',[TeamController::class,'create']); Route::get('teams', [TeamController::class, 'index']);
Route::post('teams',[TeamController::class,'store']); Route::get('teams/create', [TeamController::class, 'create']);
Route::get('teams/{id}/edit',[TeamController::class,'edit']); Route::post('teams', [TeamController::class, 'store']);
Route::post('teams/{id}',[TeamController::class,'update']); Route::get('teams/{id}/edit', [TeamController::class, 'edit']);
Route::post('teams/{id}', [TeamController::class, 'update']);
Route::get('careers',[CareerController::class,'index']);
Route::get('careers/create',[CareerController::class,'create']); Route::get('careers', [CareerController::class, 'index']);
Route::post('careers',[CareerController::class,'store']); Route::get('careers/create', [CareerController::class, 'create']);
Route::get('careers/{id}/edit',[CareerController::class,'edit']); Route::post('careers', [CareerController::class, 'store']);
Route::post('careers/{id}',[CareerController::class,'update']); Route::get('careers/{id}/edit', [CareerController::class, 'edit']);
Route::get('careers/{id}',[CareerController::class,'show']); Route::post('careers/{id}', [CareerController::class, 'update']);
Route::get('careers/{id}', [CareerController::class, 'show']);
Route::get('appointments',[AppointmentController::class,'index']);
Route::get('appointments/create',[AppointmentController::class,'create']); Route::get('appointments/education', [AppointmentController::class, 'education_appointments']);
Route::post('appointments',[AppointmentController::class,'store']); Route::get('appointments/visa', [AppointmentController::class, 'visa_appointments']);
Route::get('appointments/{id}/edit',[AppointmentController::class,'edit']); Route::get('appointments/create', [AppointmentController::class, 'create']);
Route::post('appointments/{id}',[AppointmentController::class,'update']); Route::post('appointments', [AppointmentController::class, 'store']);
Route::get('appointments/{id}/view',[AppointmentController::class,'show']); Route::get('appointments/{id}/edit', [AppointmentController::class, 'edit']);
Route::get('appointments/{id}/delete',[AppointmentController::class,'destroy']); Route::post('appointments/{id}', [AppointmentController::class, 'update']);
Route::get('appointments/{id}/view', [AppointmentController::class, 'show']);
Route::get('accomodations',[AccomodationController::class,'index']); Route::get('appointments/{id}/delete', [AppointmentController::class, 'destroy']);
Route::get('accomodations/create',[AccomodationController::class,'create']);
Route::post('accomodations',[AccomodationController::class,'store']); Route::get('accomodations', [AccomodationController::class, 'index']);
Route::get('accomodations/{id}/edit',[AccomodationController::class,'edit']); Route::get('accomodations/create', [AccomodationController::class, 'create']);
Route::post('accomodations/{id}',[AccomodationController::class,'update']); Route::post('accomodations', [AccomodationController::class, 'store']);
Route::get('accomodations/{id}',[AccomodationController::class,'show']); Route::get('accomodations/{id}/edit', [AccomodationController::class, 'edit']);
Route::get('accomodations/{id}/delete',[AccomodationController::class,'delete']); Route::post('accomodations/{id}', [AccomodationController::class, 'update']);
Route::get('accomodations/points_remove/{id}',[AccomodationController::class,'points_remove']); Route::get('accomodations/{id}', [AccomodationController::class, 'show']);
Route::get('accomodations/information_points_remove/{id}',[AccomodationController::class,'information_points_remove']); Route::get('accomodations/{id}/delete', [AccomodationController::class, 'delete']);
Route::get('accomodations/slider_points_remove/{id}',[AccomodationController::class,'slider_points_remove']); Route::get('accomodations/points_remove/{id}', [AccomodationController::class, 'points_remove']);
Route::get('accomodations/information_points_remove/{id}', [AccomodationController::class, 'information_points_remove']);
Route::get('accomodations/slider_points_remove/{id}', [AccomodationController::class, 'slider_points_remove']);
}); });
}); });
Route::get('/services', function () { Route::get('/services', function () {
return view('services'); return view('services');
@ -300,11 +302,13 @@ Route::get('/career_counselling', function () {
Route::get('/insurance', function () { Route::get('/insurance', function () {
return view('insurance'); return view('insurance');
}); });
// Route::get('/appointment', function () { // Route::get('/enquiry', function () {
// return view('appointment'); // $countries = Country::all();
// return view('enquiry-form', compact('countries'));
// }); // });
// Route::get('/visa', function () {
// return view('visa');
// });
Route::get('/enquiry' , [EnquiryController::class, 'form']);
Route::post('/enquiry' , [EnquiryController::class, 'submit'])->name('enquiry.submit');
Route::get('/privacy_policy ', function () {
return view('privacy_policy');
});

Loading…
Cancel
Save