Compare commits

..

1 Commits

Author SHA1 Message Date
tribikram 6487ff884e [edit] visa dropdown, pathway page 2 years ago
  1. 6
      app/Http/Controllers/Admin/SettingController.php
  2. 8
      app/Http/Controllers/HomeController.php
  3. 2
      app/Http/Controllers/RecruitmentController.php
  4. 14
      app/Models/User.php
  5. BIN
      public/frontend/.DS_Store
  6. 73
      public/frontend/css/style.css
  7. BIN
      public/frontend/icons/business-icon.png
  8. 4
      public/frontend/icons/efficiency.svg
  9. 4
      public/frontend/icons/recruitment-icon.svg
  10. BIN
      public/frontend/images/education-banner.png
  11. BIN
      public/frontend/images/footer-logo.png
  12. BIN
      public/frontend/images/immigration-lawyers.png
  13. BIN
      public/images/setting/2022/12/19/0bbb0976296e9b3fbf837daf11eef710.mp4
  14. BIN
      public/images/setting/2022/12/19/2dc81f8245560daabc3e6a353882ded7.mp4
  15. BIN
      public/images/setting/2022/12/19/48adb760f31b1728c0c23f7255679de1.mp4
  16. BIN
      public/images/setting/2022/12/19/5a1ceb44ae488b7d38efa296bb056f6f.mp4
  17. BIN
      public/images/setting/2022/12/19/6925976fe804324d62d964c8ce427cb6.mp4
  18. BIN
      public/images/setting/2022/12/19/96698ba315964c6b38416dea45d8a18c.mp4
  19. BIN
      public/images/setting/2022/12/19/e61fd82c1b170ee9086362c36d215cca.mp4
  20. BIN
      public/images/setting/2022/12/20/b03ddd2c5eb83515967be35fcf4ed8bd.mp4
  21. BIN
      public/images/testimonial/2022/12/06/07cc1afdbbe6c98fd67eefa227c746e2.jpeg
  22. BIN
      public/images/testimonial/2022/12/06/f9b27f203e5a9d44412c6b70510bbc3d.png
  23. 2
      resources/views/am_chef.blade.php
  24. 20
      resources/views/labor_agreement.blade.php
  25. 23
      resources/views/layout/app.blade.php
  26. 2
      resources/views/need_chef.blade.php
  27. 2
      resources/views/news.blade.php
  28. 83
      resources/views/news_detail.blade.php
  29. 20
      resources/views/pathway_programme.blade.php
  30. 19
      resources/views/recruitment.blade.php
  31. 4
      resources/views/service_view.blade.php
  32. 20
      resources/views/welcome.blade.php

@ -67,7 +67,7 @@ class SettingController extends Controller
$image_folder_type = array_search('setting',config('custom.image_folders')); //for image saved in folder
$count = rand(100,999);
$out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type);
is_array($out_put_path) ? $image_path = $out_put_path[0] : $image_path = $out_put_path;
$image_path = $out_put_path[0];
$setting->value = $image_path;
}
@ -126,7 +126,7 @@ class SettingController extends Controller
if(request('type') == array_search('Image',config('custom.setting_types'))){
if(\request('value')){
$this->validate($request,[
'value'=>'required|file|mimes:jpeg,png,jpg,pdf,mp4'
'value'=>'required|file|mimes:jpeg,png,jpg,pdf'
]
);
@ -135,7 +135,7 @@ class SettingController extends Controller
$image_folder_type = array_search('setting',config('custom.image_folders')); //for image saved in folder
$count = rand(100,999);
$out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type);
is_array($out_put_path) ? $image_path = $out_put_path[0] : $image_path = $out_put_path;
$image_path = $out_put_path[0];
$setting->value = $image_path;
}
}

@ -42,14 +42,12 @@ class HomeController extends Controller
$partners = Partner::where('status',1)->get();
$phone = Setting::where(['key' => 'phone','status' => '1'])->first();
$video = Setting::where(['key' => 'video','status' => '1'])->first();
$email = Setting::where(['key' => 'email','status' => '1'])->first();
$address = Setting::where(['key' => 'address','status' => '1'])->first();
$visa_success = Setting::where(['slug' => 'visa-success','status' => '1'])->first();
$visa_approved = Setting::where(['slug' => 'visa-approved','status' => '1'])->first();
$partner_institution = Setting::where(['slug' => 'partner-institutions','status' => '1'])->first();
$employers = Setting::where(['key' => 'employers','status' => '1'])->first();
return view('welcome',compact('services','sliders','about_us','news_and_updates','testimonials','phone','email','address','partners','visa_success','visa_approved','partner_institution','video','employers'));
return view('welcome',compact('services','sliders','about_us','news_and_updates','testimonials','phone','email','address','partners','visa_success','visa_approved','partner_institution'));
}
public function service(){
@ -84,10 +82,10 @@ class HomeController extends Controller
]);
$contact = new Contact();
$subject = htmlentities('Quick Enquiry');
$subject = 'Quick Enquiry';
$check = '';
if(isset($request['check'])){
$subject = htmlentities('Contact Enquiry');
$subject = 'Contact Enquiry';
$check = '1';
}
$name = ($request['firstname'] != null) ? ($request['firstname'].' '.$request['lastname']) : $request['fullname'] ;

@ -14,7 +14,7 @@ class RecruitmentController extends Controller
public function save_vacancy(VacancyRequest $request){
$recruitment = new Recruitment();
$subject = htmlentities('Recruitment Enquiry');
$subject = 'Recruitment Enquiry';
$recruitment->full_name = $request['full_name'];
$recruitment->company = $request['company'];

@ -233,20 +233,6 @@ class User extends Authenticatable
return($target_path.$target_file);
}
}
if(strtolower( $uploaded_ext ) == 'docx' || strtolower( $uploaded_ext ) == 'pdf'){
$target_path = $target_path;
$content = file_get_contents($requestData);
if(file_put_contents( $target_path.$target_file,$content)){
return($target_path.$target_file);
}
}
if(strtolower( $uploaded_ext ) == 'mp4' || strtolower( $uploaded_ext ) == 'pdf'){
$target_path = $target_path;
$content = file_get_contents($requestData);
if(file_put_contents( $target_path.$target_file,$content)){
return($target_path.$target_file);
}
}
}

Binary file not shown.

@ -264,7 +264,7 @@ Responsive Codes
height: 100%;
top: 0;
left: 0;
box-shadow: inset 0 1700px rgba(0, 0, 0, 0.02) !important;
box-shadow: inset 0 1700px rgb(0 0 0 / 15%) !important;
}
.banner-section .banner-description{
position: absolute;
@ -299,7 +299,7 @@ Responsive Codes
.banner-description h2, .banner-description-two h2, .banner-description-three h2{
font-weight: 800;
font-size: 54px;
line-height: 74px;
line-height: 78px;
color: #FFFFFF;
}
@keyframes anim-lineUp {
@ -382,8 +382,7 @@ Responsive Codes
.service-primary .row,
.service-secondary .row,
.service-view-last .row,
.insurance-desc .row,
.service-detail-secondary .row{
.insurance-desc .row{
display: flex;
align-items: center;
}
@ -1307,11 +1306,7 @@ Responsive Codes
line-height: 1.7rem;
color: #F54C5F;
}
.service-detail-sectwo ul,
.service-primary-desc ul,
.insurance-content ul,
.labor-section-primary ul,
.labor-section-secondary ul{
.service-detail-sectwo ul{
padding-left: 1rem;
margin-top: 0.2rem;
}
@ -1320,11 +1315,9 @@ Responsive Codes
.insurance-content ul li,
.labor-section-primary ul li,
.labor-section-secondary ul li{
display: flex;
align-items: center;
list-style: none;
position: relative;
padding-left: 40px;
line-height: 29px;
margin-top: 10px;
}
.service-detail-sectwo ul li::before,
.service-primary-desc ul li::before,
@ -1333,9 +1326,11 @@ Responsive Codes
.labor-section-secondary ul li::before {
content: url(../icons/christmas-star-new.svg);
color: #071C39;
position: absolute;
top: 4px;
left: 0;
display: inline-block;
margin-right: 0.6em;
margin-left: -1.3em;
margin-top: 8px;
width: 1.3em;
}
.service-detail-third{
background: #F7F7F9;
@ -1488,22 +1483,12 @@ Responsive Codes
padding: 3rem 6rem;
background: linear-gradient(to right, rgba(245, 245, 245, 0) 0%,rgba(255, 255, 255, 0) 20%,rgb(255, 248, 239) 20%,rgb(254, 255, 236) 100%);
}
.service-secondary .service-secondary-img{
position: absolute;
bottom: 0;
left: 0;
width: 50%;
}
.service-primary-img{
.service-primary-img,
.service-secondary-img{
margin-right: 25px;
}
.service-detail-secondary{
padding: 3rem 6rem 0 6rem;
background: #E54A5F;
}
.service-secondary{
position: relative;
padding: 3rem 6rem;
padding: 3rem 6rem 0 6rem;
background: #E54A5F;
}
.service-secondary-desc h3{
@ -1515,7 +1500,7 @@ Responsive Codes
.service-secondary-desc p{
font-weight: 500;
font-size: 16px;
line-height: 1.6rem;
line-height: 1.8rem;
color: #FFFFFF;
margin-bottom: 25px;
}
@ -1584,24 +1569,19 @@ Responsive Codes
justify-content: space-between;
background: #F3F3F3;
border-radius: 15px;
min-height: 50pc;
min-height: 46pc;
}
.need-chef-card:hover{
background: #104682;
}
.need-chef-card:hover p,
.need-chef-card:hover h4,
.need-chef-card:hover h6,
.need-chef-card:hover span{
.need-chef-card:hover h6{
color: #FFFFFF;
}
.need-chef-top{
padding: 30px;
}
.need-chef-top span{
color: #0E4F97;
text-decoration: underline;
}
/* insurance page css */
.insurance-banner{
padding: 6rem;
@ -1688,7 +1668,7 @@ Responsive Codes
flex-direction: column;
align-items: center;
padding: 30px 20px;
min-height: 25pc;
min-height: 22pc;
}
.pathway-steps-icon{
background: #FFFFFF;
@ -1706,9 +1686,6 @@ Responsive Codes
color: #FFFFFF;
text-align: center;
}
.immigration-logo{
width: 65%;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
h2{
@ -1733,8 +1710,7 @@ Responsive Codes
.recruitment-banner .breadcrumb,
.news-banner-section .breadcrumb,
.services-banner-section .breadcrumb,
.pathway-banner-section .breadcrumb,
.labor-agreement-banner .breadcrumb{
.pathway-banner-section .breadcrumb{
display: none;
}
.banner-section .banner-description {
@ -1797,8 +1773,7 @@ Responsive Codes
.insurance-desc,
.labor-section-primary,
.labor-section-secondary,
.pathway-steps-section,
.service-detail-secondary{
.pathway-steps-section{
padding: 2rem;
}
.visa-services,
@ -1881,17 +1856,11 @@ Responsive Codes
background:rgb(231, 231, 231);
}
.service-primary-img,
.service-secondary-img,
.service-last-img,
.insurance-desc-img{
margin: 0 0 20px 0;
}
.service-secondary .service-secondary-img{
position: relative;
margin: 0 0 20px 0;
bottom: 0;
left: 0;
width: 100%;
}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
html {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,5 +1,5 @@
<svg width="37" height="37" viewBox="0 0 37 37" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="37" height="37" fill="url(#pattern0)"/>
<svg width="39" height="39" viewBox="0 0 39 39" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="39" height="39" fill="url(#pattern0)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_390_30" transform="scale(0.00195312)"/>

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

@ -1,5 +1,5 @@
<svg width="37" height="37" viewBox="0 0 37 37" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="37" height="37" fill="url(#pattern0)"/>
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="42" height="42" fill="url(#pattern0)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_390_31" transform="scale(0.00195312)"/>

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 506 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 KiB

@ -17,7 +17,7 @@
</ol>
</nav>
<div class="chef-banner-content">
<h2>Hospitality Candidates</h2>
<h2>Work as a Chef</h2>
</div>
</section>
<section class="hiring-chef">

@ -18,17 +18,13 @@
</div>
</section>
<section class="labor-section-primary">
<div class="text-center mb-5">
<h2>Labour Agreement</h2>
<p>Finding the right hospitality staff in the domestic market has been proven to be difficult for many hospitality operators. Labour Agreement can serve as a strategic tool for operators within the industry to hire, educate and retain staff ensuring you have the required resources to focus on growing your business. We are specialists in assisting Premium Dining Restaurants along with Hotel and Accommodation owners in obtaining labour agreements.</p>
</div>
<h5>Restaurant <hr></h5>
<h2>Labour Agreement – Restaurant (Premium Dining)</h2>
<p>Through Labour Agreements, restaurants can hire overseas workers who are either not eligible for standard immigration programmes or have access to permanent visa options with different terms and conditions than would otherwise be available.</p>
<div class="row">
<div class="col-md-6">
<h4>You must adhere to the following entry requirements to be eligible.</h4>
<ul class="mt-3">
<ul>
<li>Should have highly experienced employee</li>
<li>Offer wine list</li>
<li>Has at least $2 million in annual income</li>
@ -39,7 +35,7 @@
</div>
<div class="col-md-6">
<h4>Under the Labour Agreement- Restaurant (Premium Dining), it will be possible to sponsor:</h4>
<ul class="mt-3">
<ul>
<li>Chefs (351311) (351311)</li>
<li>Cooks (351411) (351411)</li>
<li>Restaurant and Café Manager (141111)</li>
@ -47,15 +43,15 @@
</ul>
</div>
</div>
<p>Each occupation listed in the Premium Dining Labour agreement has a pathway to permanent residence after three years of sponsorship, either through a Subclass, 186 Employer Nominated (ENS)visa or a Subclass 191 Skilled Regional Visa.
<p>Each occupation listed in the Premium Dining Labour agreement has a pathway to permanent residence after three years of sponsorship, either through a Subclass 186 Employer Nominated (ENS)visa or a Subclass 191 Skilled Regional Visa.
<br><br>
Currently, the age limit for the Subclass 186 Visa is under 45 years.
Currently, the age limit for the Subclass 186 Vis is under 55 years.
</p>
<h4>The following must require under TSS and SESR visa for Nominee,</h4>
<ul class="mt-3">
<ul>
<li>An overall IELTS 5.0 (or equivalent),</li>
<li>No less than IELTS 4.5 for listening and speaking and</li>
<li>No less than IELTS 4.0 for reading and writing.</li>
<li>no less than IELTS 4.5 for listening and speaking and</li>
<li>no less than IELTS 4.0 for reading and writing.</li>
</ul>
</section>
<section class="labor-section-secondary">
@ -63,7 +59,7 @@
<h2>Labour Agreement- Hotel and Accommodation</h2>
<p>The labour agreement offers an opportunity for positions particular to the hotel and accommodation sector to hire overseas workers.</p>
<h4>Under the Hotel and Accommodation Labour Agreement, you will be able to sponsor the following occupations:</h4>
<ul class="mt-3">
<ul>
<li>Café or Restaurant Manager (141111)</li>
<li>Hotel or Motel Manager (141311)</li>
<li>Hotel Service manager (431411)</li>

@ -66,8 +66,8 @@
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
<a class="dropdown-item" href="{{url('/need_chef')}}">Hospitality Operator</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">Hospitality Candidate</a>
<a class="dropdown-item" href="{{url('/need_chef')}}">Hire a Chef</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">Work as a Chef</a>
<a class="dropdown-item" href="{{url('/labor_agreement')}}">Labour Agreements</a>
</li>
</ul>
@ -113,19 +113,16 @@
<div class="row">
<div class="col-md-3">
<div class="footer-desc">
<img src="{{url('frontend/images/footer-logo.png')}}" class="img-fluid" alt="">
<p>A PLUS Australia Agency, we strive to turn your dream into reality. We help you to secure your future in Australia.</p>
<div class="immigration-logo">
<img src="{{url('frontend/images/immigration-lawyers.png')}}" class="img-fluid mt-4" alt="">
</div>
<img src="{{url('frontend/images/logo.png')}}" class="img-fluid" alt="">
<p>A PLUS Australia agency, we strive to turn your dream into reality. We help you to achieve Permanent Residency in Australia.</p>
</div>
</div>
<div class="col-md-3">
<div class="visa-services">
<h2>Visa Services</h2>
<ul>
@foreach($visa_services as $service)
<li><a href="{{url('/visa_service/'.$service->slug)}}">{{$service->name}}</a></li>
@foreach($services as $service)
<li><a href="{{url('/service/'.$service->slug)}}">{{$service->name}}</a></li>
@endforeach
</ul>
@ -135,8 +132,8 @@
<div class="recruitment">
<h2>Recruitment</h2>
<ul>
<li><a href="/need_chef">Hospitality Operator</a></li>
<li><a href="/am_chef">Hospitality Candidate</a></li>
<li><a href="/need_chef">Hire a Chef</a></li>
<li><a href="/am_chef">Work as a Chef</a></li>
<li><a href="/labor_agreement">Labour Agreements</a></li>
</ul>
</div>
@ -155,8 +152,8 @@
</div>
</div>
<div class="footer-bottom">
<div class="copyright">
<p>MIGRATION AGENT’S NUMBER MARN: 1463534</p>
<div class="abn">
<p>ABN : 97654871011 </p>
</div>
<div class="copyright">
<p>APLUS © 2022. All Rights Reserved.</p>

@ -17,7 +17,7 @@
</ol>
</nav>
<div class="chef-banner-content">
<h2>Hospitality Operator’s</h2>
<h2>Hire a Chef</h2>
</div>
</section>
<section class="hiring-chef">

@ -50,7 +50,7 @@
</div>
<div class="news-card-desc">
<h4>{{$news->title}}</h4>
<p>e</p>
<p>{!!(\Illuminate\Support\Str::limit(strip_tags($news->description), 150, $end='...'))!!}</p>
</div>
</a>
</div>

@ -32,25 +32,86 @@
</section>
<section class="related-article">
<h3>Related Articles</h3>
<!-- <h2 class="mt-4">Coming soon......</h2> -->
<div class="row g-4">
@foreach(App\Models\NewsAndUpdate::where('id','!=',$news->first()->id)->where('status','1')->get() as $related)
<h2 class="mt-4">Coming soon......</h2>
{{-- <div class="row g-4">
<div class="col-md-4">
<div class="news-page-card">
<a href="{{url('news/'.$related->slug)}}">
<a href="/news_detail">
<div class="news-card-img">
<img src="{{url($related->image)}}" class="img-fluid" alt="">
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt="">
</div>
<div class="news-card-desc">
<h4>{{$related->title}}</h4>
<p>{!!(\Illuminate\Support\Str::limit(strip_tags($related->description), 150, $end='...'))!!}</p>
<h4>Lorem Ipsum is simply dummy text of the printing</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p>
</div>
</a>
</div>
</div>
@endforeach
</div>
<div class="col-md-4">
<div class="news-page-card">
<a href="/news_detail">
<div class="news-card-img">
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt="">
</div>
<div class="news-card-desc">
<h4>Lorem Ipsum is simply dummy text of the printing</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="news-page-card">
<a href="/news_detail">
<div class="news-card-img">
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt="">
</div>
<div class="news-card-desc">
<h4>Lorem Ipsum is simply dummy text of the printing</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="news-page-card">
<a href="/news_detail">
<div class="news-card-img">
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt="">
</div>
<div class="news-card-desc">
<h4>Lorem Ipsum is simply dummy text of the printing</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="news-page-card">
<a href="/news_detail">
<div class="news-card-img">
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt="">
</div>
<div class="news-card-desc">
<h4>Lorem Ipsum is simply dummy text of the printing</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="news-page-card">
<a href="/news_detail">
<div class="news-card-img">
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt="">
</div>
<div class="news-card-desc">
<h4>Lorem Ipsum is simply dummy text of the printing</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p>
</div>
</a>
</div>
</div>
</div> --}}
</section>
@endsection

@ -2,11 +2,11 @@
@section('title')
<title>Pathway Programme</title>
<meta name="description" content="Delivering excellent and cost-effective solutions to esnure customer satisfaction."/>
<meta name="og:title" content="Education"/>
<meta name="og:image" content="{{url('frontend/images/education-banner.png')}}"/>
<meta name="og:title" content="Pathway Programme"/>
<meta name="og:image" content="{{url('frontend/images/pathway-banner.png')}}"/>
@endsection
@section('content')
<section class="pathway-banner-section" style="background: url('frontend/images/education-banner.png')">
<section class="pathway-banner-section" style="background: url('frontend/images/pathway-banner.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
@ -28,9 +28,7 @@
<div class="service-secondary-desc">
<h5><hr>Education</h5>
<h3>Pathway from Education</h3>
<p>A PLUS AGENCY partners with educational providers throughout Australia to assist aspiring students in obtaining the relevant qualifications before embarking on further professional development.</p>
<p>It is common for international students to come to Australia and decide to look for permanent migration options to call Australia home! There are several pathways available to secure a future in Australia, however, the first step is ensuring relevant qualifications are obtained.</p>
<p>At A PLUS AGENCY, we aid from day one and provide a proven framework with an emphasis on employability.</p>
<p>Some students come to Australia and like living here so much that they decide to live and apply for Permanent Residence Visa after completing their studies. Several pathways to a better future in Australia for international students are available, which will be determined by factors such as qualification, English language ability, employment history and other requirements.</p>
<a href="/contact">Book An Appointment</a>
</div>
</div>
@ -38,12 +36,12 @@
</section>
<section class="pathway-steps-section">
<div class="pathway-step-header">
<h2><span>Pathway</span> to a Successful Future In Australia through 4 Simple Steps</h2>
<h2><span>Pathway</span> to Australian PR through 4 simple steps</h2>
<p>The current certification needed is a Cert IV in Commercial Cookery to receive a positive skills assessment. You can even accomplish this without an employer's sponsorship or having to reside in a rural area.</p>
<h5>Here are a few easy steps that could help you follow this road.</h5>
</div>
<div class="row g-4">
<div class="col-lg-3 col-md-6">
<div class="col-md-3">
<div class="pathway-step-card">
<div class="pathway-steps-icon">
<img src="{{url('frontend/icons/write-blue.svg')}}" alt="">
@ -54,7 +52,7 @@
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="col-md-3">
<div class="pathway-step-card">
<div class="pathway-steps-icon">
<img src="{{url('frontend/icons/online-learning.svg')}}" alt="">
@ -65,7 +63,7 @@
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="col-md-3">
<div class="pathway-step-card">
<div class="pathway-steps-icon">
<img src="{{url('frontend/icons/efficiency.svg')}}" alt="">
@ -76,7 +74,7 @@
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="col-md-3">
<div class="pathway-step-card">
<div class="pathway-steps-icon">
<img src="{{url('frontend/icons/recruitment-icon.svg')}}" alt="">

@ -27,13 +27,13 @@
<a href="/need_chef">
<div class="need-chef-card">
<div class="need-chef-top">
<h4>I am a Hospitality Operator</h4>
<h6>Our goal is to connect highly skilled people with hospitality operators.</h6>
<p>A Plus Agency is an education and recruitment firm specialising in the hospitality industry, we concentrate on business-to-business relations and international candidate placements.
<h4>I need a Chef</h4>
<h6>Connecting People and Businesses</h6>
<p>A Plus Agency is an education and recruitment firm specializing in the hospitality industry, focusing on business-to-business relationships and international chef placements.
<br><br>
Need help finding the best candidates for your business? Whatever you need, we work relentlessly to provide the best talent for your business.
Need help finding the best chef for your business? Whatever you need, we will help to find the right talent!
<br><br>
Please get in touch via our <span>enquiry form</span> . We would love to find out how we can help you!
Please get in touch via our enquiry form. We would love to find out how we can help you!
</p>
</div>
<div class="need-chef-card-img text-center">
@ -46,12 +46,13 @@
<a href="/am_chef">
<div class="need-chef-card">
<div class="need-chef-top">
<h4>I am A Hospitality Candidate</h4>
<p>At A-PLUS we are obsessed with enabling individuals to further progress within their careers.
<h4>I am Chef</h4>
<h6>We help you Grow, Choose a Job you Love</h6>
<p>A Plus Agency gives hospitality workers like you the ultimate freedom & choice, supports you throughout your employment and provides protection.
<br><br>
A Plus Agency gives hospitality workers like yourself the ultimate freedom & choice, we don’t just end our relationship upon placement. We constantly support you throughout your employment and help ensure progressive professional development.
If you want to work in Australia as a Chef or a Cook, you must provide evidence that you have the skills and qualifications to fulfil the specific job requirements.
<br><br>
If you are looking to secure a future within Australia's hospitality sector, we’d love to hear from you. Please send an <span>enquiry</span> with evidence of your skills and qualifications so we can connect you with any opportunities that may arise.
Are you a chef looking for work? We would love to hear from you!
</p>
</div>
<div class="need-chef-card-img text-center">

@ -42,10 +42,10 @@
</section>
@if($service_sections->count() > 1)
@php $second_service = $service_sections[1];@endphp
<section class="service-detail-secondary">
<section class="service-secondary">
<div class="row">
<div class="col-md-6">
<div class="service-detail-secondary-img">
<div class="service-secondary-img">
<img src="{{url($second_service->image ?? '')}}" class="w-100" alt="">
</div>
</div>

@ -12,11 +12,11 @@
<!-- Slider section -->
<section class="banner-section" >
<video id="vid" autoplay playsinline loop muted>
<source src="{{url($video->value)}}" type="video/mp4">
<source src="{{url('frontend/video/aplus-video.mp4')}}" type="video/mp4">
</video>
<span class="banner-shadow"></span>
<div class="banner-description">
<h2>4 Easy Steps To <br> Secure Your Future <br> In Australia
<h2>4 Easy Steps To <br> Secure a Better Future <br> In Australia
<span data-text="Study Programme"></span>
<span data-text2="Training Programme"></span>
<span data-text3="Skill Assessment"></span>
@ -47,15 +47,15 @@
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value ?? ''}} <span>(This year)</span></h5>
<h5>{{$visa_approved->value ?? ''}}</h5><span>(This year)</span>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>{{$partner_institution->value ?? ''}}</h5>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/business-icon.png')}}" alt="">
<h5>{{$employers->value ?? ''}}</h5>
<img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>50+ Employers</h5>
</div>
</div>
</section>
@ -69,16 +69,16 @@
<div class="col-md-6">
<div class="about-us-sec">
<h2>A-Plus Australia Agency</h2>
<h4>We will help you secure a long-lasting future in Australia</h4>
<h4>We will help you achieve Permanent Residency in Australia</h4>
<p>The success in your life comes from you thriving in the things that you are most passionate about.
<br><br>
At A-PLUS Australia Agency, we strive to turn your dream into reality. Our team of well-established advisers are here to help you gain your qualifications and kick start your life by assisting you from the day of application till you gain your Permanent Residency in Australia.
At A-PLUS Australia agency, we strive to turn your dream into reality. Our team of well-established advisers are here to help you gain your qualifications and kick start your life by assisting you from the day of application till you gain your Permanent Residency in Australia.
</p>
<h5>Why Choose A-Plus Australia Agency?</h5>
<ul>
<li>100% Success</li>
<li>Proven pathways to a successful future in Australia.</li>
<li>You are our priority</li>
<li>Pathway to Parmanent</li>
<li>You are our first Priority</li>
</ul>
<a href="{{url('/about')}}">View More</a>
</div>
@ -213,7 +213,6 @@
</section>
<!-- news and update section -->
<!-- clients section -->
@if(count($testimonials) > 0)
<section class="clients-section">
<div class="clients-header text-center">
<h2>What our Clients say about us?</h2>
@ -246,7 +245,6 @@
</div>
</section>
@endif
<!-- clients section -->
<!-- cotact section -->
<section class="quick-enquiry-setion">

Loading…
Cancel
Save