From bc56a1bc5b05cb9b8db12e495a591e3505adc726 Mon Sep 17 00:00:00 2001 From: tribikram Date: Fri, 3 Feb 2023 11:31:31 +0545 Subject: [PATCH] [add] insurance and career caunselling page --- public/frontend/css/style.css | 11 +++- resources/views/career_counselling.blade.php | 63 ++++++++++++++++++++ resources/views/insurance.blade.php | 49 +++++++++++++++ resources/views/welcome.blade.php | 4 +- routes/web.php | 12 ++-- 5 files changed, 130 insertions(+), 9 deletions(-) create mode 100644 resources/views/career_counselling.blade.php create mode 100644 resources/views/insurance.blade.php diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 49fa798..7085713 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -758,6 +758,13 @@ Responsive Codes .visa-desc h2{ color: #E22899; } +.career-counselling h2, +.career-counselling h3{ + text-align: center; +} +.career-counselling h3{ + margin-bottom: 1.6rem; +} .sydney-desc p{ margin-bottom: 2rem; } @@ -819,7 +826,9 @@ Responsive Codes /* study detail css starts */ .study-detail-desc h1, .scholarship-desc h1, -.scholarship-desc h3{ +.scholarship-desc h3, +.career-counselling h3, +.visa-desc h3{ color: #296AC7; } .universities-card{ diff --git a/resources/views/career_counselling.blade.php b/resources/views/career_counselling.blade.php new file mode 100644 index 0000000..d74e3b6 --- /dev/null +++ b/resources/views/career_counselling.blade.php @@ -0,0 +1,63 @@ +@extends('layout.app') +@section('title') +Career Counselling + + + + + + +@endsection +@section('content') +
+ +
+

Career Counselling

+
Get the right guidance to leap through your career.
+
+
+
+
+
+
+

Counselling at Your Tips

+

Ensuring You Put Your Best Foot Forward

+

+ At ET Education Visa & Migration, our skilled professionals assist international students in career guidance and counselling: Right from selecting the most suitable course to the best education provider and visa application process to the journey to Australia and making you experts in the field you choose to secure a job after completion of studies. They assist the students by providing authentic information, making the different options available, and helping them choose the right course. +

+  We provide counselling services to students from all educational backgrounds. We are dealing with values & faith and always give our best and provide a fruitful outcome. +

+
+
+
+
+
+
+
+
+

Comprehensive Counselling Process

+

Partnering With You Every Step of the Way

+

Every student is guided from initial college selection all the way up to a successful student visa.

+
    +
  • Send Academic Documents
  • +
  • Profile Evaluation Call
  • +
  • University Shortlist
  • +
  • Document Preparation
  • +
  • Application Submission
  • +
  • Visa Counseling & Interview
  • +
+
+
+
+
+ +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/insurance.blade.php b/resources/views/insurance.blade.php new file mode 100644 index 0000000..45e886d --- /dev/null +++ b/resources/views/insurance.blade.php @@ -0,0 +1,49 @@ +@extends('layout.app') +@section('title') +Insurance + + + + + + +@endsection +@section('content') +
+ +
+

Insurance

+
Get the right guidance to leap through your career.
+
+
+
+
+
+
+

OSHC and OVHC Insurance Cover

+

An Insurance Policy for the Right Visas

+

An applicant travelling to Australia on a student visa purchased the Overseas Student Health Cover, and an international applicant wishing to come to or work in Australia applied for the Overseas Visitor Health Cover. These include; +

    +
  • Student Visa: Subclass 500
  • +
  • Visitor Visas: Subclasses 300, 580, 590, 600, 601
  • +
  • Bridging Visas
  • +
  • Working Visas: Subclasses 482, 485, 400,401, 476, 489, etc.
  • +
  • Working Holiday Visas: Subclasses 417 & 462
  • +
+ ET Education is partnered with the most popular health insurance providers such as BUPA, Medibank, AHM, NIB and Allianz Care Australia, giving you the flexibility to take the health cover of your choice at a highly competitive price. +

+
+
+
+
+ +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index eb08d00..716dc82 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -110,7 +110,7 @@

Career Counselling

Get the right guidance to leap through your career.

- Learn More + Learn More
@@ -118,7 +118,7 @@

Insurance

Providing the right health insurance at competitive rates 

- Learn More + Learn More
diff --git a/routes/web.php b/routes/web.php index d89948d..5eb8b7a 100644 --- a/routes/web.php +++ b/routes/web.php @@ -289,12 +289,12 @@ Route::group(['middleware'=>['auth']],function (){ Route::get('/services', function () { return view('services'); }); -// Route::get('/study-abroad-detail', function () { -// return view('study-abroad-detail'); -// }); -// Route::get('/study-abroad', function () { -// return view('study-abroad'); -// }); +Route::get('/career_counselling', function () { + return view('career_counselling'); +}); +Route::get('/insurance', function () { + return view('insurance'); +}); // Route::get('/study-abroad-detail', function () { // return view('study-abroad-detail'); // });