Compare commits

..

No commits in common. 'master' and 'aplus#28' have entirely different histories.

  1. 6
      app/Http/Controllers/Admin/SettingController.php
  2. 18
      app/Http/Controllers/HomeController.php
  3. 27
      app/Http/Controllers/RecruitmentController.php
  4. 47
      app/Http/Requests/ContactRequest.php
  5. 51
      app/Http/Requests/Recruitment/ApplyRequest.php
  6. 45
      app/Http/Requests/Recruitment/VacancyRequest.php
  7. 14
      app/Models/User.php
  8. BIN
      public/frontend/.DS_Store
  9. 138
      public/frontend/css/style.css
  10. BIN
      public/frontend/icons/business-icon.png
  11. 12
      public/frontend/icons/contact-call-icon.svg
  12. 18
      public/frontend/icons/contact-location-icon.svg
  13. 14
      public/frontend/icons/contact-mail-icon.svg
  14. 4
      public/frontend/icons/efficiency.svg
  15. BIN
      public/frontend/icons/location-address.png
  16. 4
      public/frontend/icons/recruitment-icon.svg
  17. BIN
      public/frontend/images/education-banner.png
  18. BIN
      public/frontend/images/education-image.png
  19. BIN
      public/frontend/images/footer-logo.png
  20. BIN
      public/frontend/images/immigration-lawyers.png
  21. BIN
      public/frontend/video/aplus-video.mp4
  22. BIN
      public/images/setting/2022/12/19/0bbb0976296e9b3fbf837daf11eef710.mp4
  23. BIN
      public/images/setting/2022/12/19/2dc81f8245560daabc3e6a353882ded7.mp4
  24. BIN
      public/images/setting/2022/12/19/48adb760f31b1728c0c23f7255679de1.mp4
  25. BIN
      public/images/setting/2022/12/19/5a1ceb44ae488b7d38efa296bb056f6f.mp4
  26. BIN
      public/images/setting/2022/12/19/6925976fe804324d62d964c8ce427cb6.mp4
  27. BIN
      public/images/setting/2022/12/19/96698ba315964c6b38416dea45d8a18c.mp4
  28. BIN
      public/images/setting/2022/12/19/e61fd82c1b170ee9086362c36d215cca.mp4
  29. BIN
      public/images/setting/2022/12/20/b03ddd2c5eb83515967be35fcf4ed8bd.mp4
  30. BIN
      public/images/testimonial/2022/12/06/07cc1afdbbe6c98fd67eefa227c746e2.jpeg
  31. BIN
      public/images/testimonial/2022/12/06/f9b27f203e5a9d44412c6b70510bbc3d.png
  32. 6
      resources/views/about.blade.php
  33. 26
      resources/views/am_chef.blade.php
  34. 40
      resources/views/contact.blade.php
  35. 6
      resources/views/insurance.blade.php
  36. 22
      resources/views/labor_agreement.blade.php
  37. 90
      resources/views/layout/app.blade.php
  38. 16
      resources/views/need_chef.blade.php
  39. 2
      resources/views/news.blade.php
  40. 83
      resources/views/news_detail.blade.php
  41. 43
      resources/views/pathway_programme.blade.php
  42. 19
      resources/views/recruitment.blade.php
  43. 6
      resources/views/service_detail.blade.php
  44. 4
      resources/views/service_view.blade.php
  45. 10
      resources/views/services.blade.php
  46. 49
      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;
}
}

@ -2,7 +2,6 @@
namespace App\Http\Controllers;
use App\Http\Requests\ContactRequest;
use App\Models\NewsAndUpdate;
use App\Models\Service;
use App\Models\AboutUs;
@ -42,14 +41,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(){
@ -79,15 +76,19 @@ class HomeController extends Controller
return view('accommodation',compact('accomodation'));
}
public function send_contact_mail(ContactRequest $request){
public function send_contact_mail(Request $request){
$this->validate(\request(),[
'fullname' => 'required',
'phone' => 'required',
'email' => 'required',
'service_id' => 'required|numeric',
'entered_captcha_code' => 'required|same:displayed_captcha_code'
]);
$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'] ;
@ -126,7 +127,6 @@ class HomeController extends Controller
$message->subject($subject);
// $message->to('info@agilityhomecare.com.au', 'AgilityHomeCare')->subject($subject);
$message->to('mahesh@extratechs.com.au', 'Extratech')->subject($subject);
$message->to('suman@extratechs.com.au', 'Extratech')->subject($subject);
});

@ -6,15 +6,19 @@ use App\Models\Recruitment;
use App\Models\Applicant;
use App\Models\User;
use Illuminate\Http\Request;
use App\Http\Requests\Recruitment\ApplyRequest;
use App\Http\Requests\Recruitment\VacancyRequest;
class RecruitmentController extends Controller
{
public function save_vacancy(VacancyRequest $request){
public function save_vacancy(Request $request){
$this->validate(\request(),[
'full_name' => 'required',
'company' => 'required',
'email' => 'required',
'no_of_position' => 'required',
'entered_captcha_code' => 'required|same:displayed_captcha_code'
]);
$recruitment = new Recruitment();
$subject = htmlentities('Recruitment Enquiry');
$subject = 'Recruitment Enquiry';
$recruitment->full_name = $request['full_name'];
$recruitment->company = $request['company'];
@ -51,8 +55,17 @@ class RecruitmentController extends Controller
return redirect()->back()->with(['msg' => 'Thank you! Your recruitment details have been recieved.']);
}
public function apply(ApplyRequest $request){
public function apply(Request $request){
$this->validate(\request(),[
'full_name' => 'required',
'phone' => 'required',
'email' => 'required',
'file' => 'required',
'country' => 'required',
'has_visa_permit' => 'required',
'has_skill_assessed' => 'required',
'entered_captcha_code' => 'required|same:displayed_captcha_code'
]);
$recruitment = new Applicant();
$subject = 'Applicant Enquiry';

@ -1,47 +0,0 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ContactRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'fullname' => ['required'],
'phone' => ['required'],
'email' => ['required'],
'service_id' => ['required'],
'entered_captcha_code' => ['required','same:displayed_captcha_code']
];
}
public function messages(){
return[
'fullname.required' => 'Full name is required.',
'phone.required' => 'Phone number is required.',
'email.required' => 'Email is required.',
'service_id.required' => 'Please select a service.',
'entered_captcha_code.required' => 'Please enter captcha.',
'entered_captcha_code.same' => 'Captcha is incorrect.'
];
}
}

@ -1,51 +0,0 @@
<?php
namespace App\Http\Requests\Recruitment;
use Illuminate\Foundation\Http\FormRequest;
class ApplyRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'full_name' => 'required',
'phone' => 'required',
'email' => 'required',
'file' => 'required',
'country' => 'required',
'has_visa_permit' => 'required',
'has_skill_assessed' => 'required',
'entered_captcha_code' => ['required','same:displayed_captcha_code']
];
}
public function messages()
{
return [
'full_name.required' => 'Full name is required.',
'phone.required' => 'Phone number is required.',
'email.required' => 'Email is required.',
'file.required' => 'Please upload your resume.',
'country.required' => 'Please select your country.',
'has_visa_permit.required' => 'Please specify your visa permit position.',
'has_skill_assesed.required' => 'Please specify your TRA skill assessment.',
'entered_captcha_code.required' => 'Please enter captcha.',
'entered_captcha_code.same' => 'Captcha is incorrect.'
];
}
}

@ -1,45 +0,0 @@
<?php
namespace App\Http\Requests\Recruitment;
use Illuminate\Foundation\Http\FormRequest;
class VacancyRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'full_name' => 'required',
'company' => 'required',
'email' => 'required',
'no_of_position' => 'required',
'entered_captcha_code' => ['required','same:displayed_captcha_code']
];
}
public function messages()
{
return [
'full_name.required' => 'Full name is required.',
'company.required' => 'Your company is required.',
'email.required' => 'Email is required.',
'no_of_position.required' => 'Number of position is required',
'entered_captcha_code.required' => 'Please enter captcha.',
'entered_captcha_code.same' => 'Captcha is incorrect.'
];
}
}

@ -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.

@ -122,7 +122,7 @@ h4{
font-size: 14px;
}
.service-dropdown{
width: 350px;
width: 600px;
transform: translate(-30%, 0%);
}
.service-drop-card{
@ -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 / 45%) !important;
}
.banner-section .banner-description{
position: absolute;
@ -272,9 +272,8 @@ Responsive Codes
left: 6%;
}
.banner-description span::before{
content: attr(data-text);
content: "Study Programme";
animation: 12s animate infinite;
animation-delay: 500ms;
padding-left: 10px;
color: #F54C5F;
}
@ -299,7 +298,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 {
@ -326,17 +325,16 @@ Responsive Codes
@keyframes animate {
0% {
content: attr(data-text);
content: "Study Programme";
}
50% {
content: attr(data-text2);
content: "Training Programme";
}
75% {
content: attr(data-text3);
content: "Skill Assessment";
}
100%{
content: attr(data-text4);
content: "Skilled Recruitment";
}
}
.banner-description h3, .banner-description-two h3, .banner-description-three h3{
@ -368,12 +366,6 @@ Responsive Codes
align-items: center;
gap: 15px;
}
.achivement-sec span{
font-weight: 500;
font-size: 14px;
line-height: 2rem;
color: #202023;
}
/* about us section css */
.about-us-section{
padding: 3rem 6rem;
@ -382,8 +374,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;
}
@ -556,8 +547,8 @@ Responsive Codes
}
.featured-news:hover p,
.featured-news:hover h2,
.more-news-box:hover p,
.more-news-box:hover h4{
.more-news:hover p,
.more-news:hover h4{
color: #F54C5F;
}
.featured-news p,
@ -566,8 +557,8 @@ Responsive Codes
-webkit-transition: color 1s;
transition: color 300ms;
}
.more-news-box p,
.more-news-box h4{
.more-news p,
.more-news h4{
color: #221415;
-webkit-transition: color 1s;
transition: color 300ms;
@ -941,9 +932,7 @@ Responsive Codes
.labor-agreement-banner .breadcrumb,
.service-detail-banner .breadcrumb,
.recruitment-banner .breadcrumb,
.news-banner-section .breadcrumb,
.services-banner-section .breadcrumb,
.pathway-banner-section .breadcrumb{
.news-banner-section .breadcrumb{
float: right;
}
.about-banner-section .breadcrumb a,
@ -953,9 +942,7 @@ Responsive Codes
.labor-agreement-banner .breadcrumb a,
.service-detail-banner .breadcrumb a,
.recruitment-banner .breadcrumb a,
.news-banner-section .breadcrumb a,
.services-banner-section .breadcrumb a,
.pathway-banner-section .breadcrumb a{
.news-banner-section .breadcrumb a{
text-decoration: none;
color: #FFFFFF;
}
@ -1033,7 +1020,7 @@ Responsive Codes
.chef-hire-form h2{
font-weight: 500;
font-size: 22px;
line-height: 1.8rem;
line-height: 178%;
text-align: center;
color: #0A2849;
margin-bottom: 30px;
@ -1307,11 +1294,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 +1303,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 +1314,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 +1471,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 +1488,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;
}
@ -1548,9 +1521,7 @@ Responsive Codes
color: #082548;
}
.recruitment-primary h2 span,
.insurance-content h2 span,
.our-service-head h2 span,
.pathway-step-header h2 span{
.insurance-content h2 span{
color: #F54C5F
}
.recruitment-primary p{
@ -1584,24 +1555,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 +1654,7 @@ Responsive Codes
flex-direction: column;
align-items: center;
padding: 30px 20px;
min-height: 25pc;
min-height: 22pc;
}
.pathway-steps-icon{
background: #FFFFFF;
@ -1706,24 +1672,8 @@ Responsive Codes
color: #FFFFFF;
text-align: center;
}
.immigration-logo{
width: 65%;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
h2{
font-size: 26px;
}
.enquiry-contacts p{
font-weight: 400;
font-size: 16px;
margin-bottom: 40px;
line-height: 1.8rem;
color: #FFFFFF;
}
.enquiry-header h2 {
font-size: 38px;
}
/* contact us mobile view */
.about-banner-section .breadcrumb,
.contact-us-section .breadcrumb,
@ -1731,10 +1681,7 @@ Responsive Codes
.insurance-banner .breadcrumb,
.service-detail-banner .breadcrumb,
.recruitment-banner .breadcrumb,
.news-banner-section .breadcrumb,
.services-banner-section .breadcrumb,
.pathway-banner-section .breadcrumb,
.labor-agreement-banner .breadcrumb{
.news-banner-section .breadcrumb{
display: none;
}
.banner-section .banner-description {
@ -1763,7 +1710,7 @@ Responsive Codes
display: none;
}
.contact-form{
margin: 25px 0;
margin: 0;
}
.contact-captcha{
display: flex;
@ -1797,8 +1744,7 @@ Responsive Codes
.insurance-desc,
.labor-section-primary,
.labor-section-secondary,
.pathway-steps-section,
.service-detail-secondary{
.pathway-steps-section{
padding: 2rem;
}
.visa-services,
@ -1840,9 +1786,9 @@ Responsive Codes
}
.blog-header h2,
.enquiry-contacts h2{
text-align: left;
font-size: 26px;
line-height: 38px;
text-align: center;
font-size: 32px;
line-height: 44px;
margin-bottom: 15px;
}
.chef-hire-form button{
@ -1881,17 +1827,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

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 770 B

After

Width:  |  Height:  |  Size: 34 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 712 B

After

Width:  |  Height:  |  Size: 16 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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 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: 1.0 MiB

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

@ -23,15 +23,15 @@
<div class="who-we-desc">
<h5>About us <hr></h5>
<h3>Who are we?</h3>
<p>{!!strip_tags($about->first()->description)!!}
<p>{{$about->first()->description}}
<br><br>
{!!strip_tags($about->first()->sub_description)!!}
{{$about->first()->sub_description}}
</p>
</div>
</div>
<div class="col-md-6">
<div class="who-we-img">
<img src="{{url($about->first()->image)}}" class="img-fluid" alt="">
<img src="{{url($about->first()->image)}}" alt="">
</div>
</div>
</div>

@ -12,12 +12,12 @@
<section class="need-chef-banner" style="background: url('frontend/images/am-chef-banner.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item"><a href="/">Aplusagency</a></li>
<li class="breadcrumb-item active" aria-current="page">Recruitment</li>
</ol>
</nav>
<div class="chef-banner-content">
<h2>Hospitality Candidates</h2>
<h2>I am Chef</h2>
</div>
</section>
<section class="hiring-chef">
@ -26,7 +26,7 @@
<div class="hiring-content">
<h5>Hiring <hr></h5>
<h3>Looking for a job as a Chef or Cook?</h3>
<p>If you’re qualified to be a Chef or Cook in Australia, please fill out the application form. We'd love to do our utmost for hospitality workers!</p>
<p>If you’re qualified to be a Chef of Cook in Australia, please fill out the application form. We'd love to do our utmost for hospitality workers!</p>
<h6>Chefs and Cooks need to be</h6>
<ul>
<li> Interested in food and cooking</li>
@ -56,16 +56,16 @@
<h2>Please fill-up the form</h2>
<div class="mb-3">
<label for="full_name">Full name</label>
<input type="text" class="form-control" placeholder="Your full name" name="full_name" id="full_name" value = "{{old('full_name')}}">
<label for="">Full name</label>
<input type="text" class="form-control" placeholder="Your full name" name="full_name" id="">
</div>
<div class="mb-3">
<label for="email">Email address</label>
<input type="email" class="form-control" placeholder="Your email address" name="email" id="email" value = "{{old('email')}}">
<label for="">Email address</label>
<input type="email" class="form-control" placeholder="Your email address" name="email" id="">
</div>
<div class="mb-3">
<label for="phone">Phone</label>
<input type="text" class="form-control" placeholder="Your phone number" name="phone" id="phone" value = "{{old('phone')}}">
<label for="">Phone</label>
<input type="text" class="form-control" placeholder="Your phone number" name="phone" id="">
</div>
<div class="mb-3">
<label for="">Passport Country</label>
@ -329,16 +329,16 @@
<label for="">Do you have a visa permitting work in Australia?</label>
<select class="form-select" name="has_visa_permit" id="">
<option value="" hidden>Select Position</option>
<option value="1" @if(old('has_visa_permit') == true) selected @endif class="aplus-display-select">Yes</option>
<option value="0" @if(old('has_visa_permit') == false) selected @endif class="aplus-display-select">No</option>
<option value="1" class="aplus-display-select">Yes</option>
<option value="0" class="aplus-display-select">No</option>
</select>
</div>
<div class="mb-3">
<label for="">Have you completed a TRA skill assessment?</label>
<select class="form-select" name="has_skill_assessed" id="">
<option value="" hidden>Select Position</option>
<option value="1" @if(old('has_skill_assessed') == true) selected @endif class="aplus-display-select">Yes</option>
<option value="0" @if(old('has_skill_assessed') == false) selected @endif class="aplus-display-select">No</option>
<option value="1" class="aplus-display-select">Yes</option>
<option value="0" class="aplus-display-select">No</option>
</select>
</div>
<div class="mb-3">

@ -36,21 +36,27 @@
one of our migration agents will be in touch.
</p>
<div class="contact-desc">
@if(!is_null($phone))
<a href="tel: {{$phone->value}}" class="contact-phone">
<img src="{{url('frontend/icons/contact-call-icon.svg')}}" alt="">
@if($phone !== null)
<a href="tel: {{$phone->value}}" class="contact-phone">
<div class="contact-icons">
<img src="{{url('frontend/icons/contact-call-icon.svg')}}" class="img-fluid" alt="">
</div>
<h5>{{$phone->value}}</h5>
</a>
</a>
@endif
@if(!is_null($email))
<a href="mailto: {{$email->value}}" class="contact-phone">
<img src="{{url('frontend/icons/contact-mail-icon.svg')}}" alt="">
@if($email !== null)
<a href="mailto: {{$email->value}}" class="contact-phone">
<div class="contact-icons">
<img src="{{url('frontend/icons/contact-mail-icon.svg')}}" class="img-fluid" alt="">
</div>
<h5>{{$email->value}}</h5>
</a>
</a>
@endif
@if(!is_null($address))
@if($address !== null)
<a href="https://goo.gl/maps/P4Y2PYGMpGa83L2R8" target="_blank" class="contact-phone">
<img src="{{url('frontend/icons/contact-location-icon.svg')}}" alt="">
<div class="contact-icons">
<img src="{{url('frontend/icons/contact-location-icon.svg')}}" class="img-fluid" alt="">
</div>
<h5>{{$address->value}}</h5>
</a>
@endif
@ -68,19 +74,19 @@
<div class="col-md-6">
<div class="mb-3">
<label for="">Full name</label>
<input type="text" class="form-control" placeholder="Enter your full name" name="fullname" id="" value = "{{old('fullname')}}">
<input type="text" class="form-control" placeholder="Enter your name" name="fullname" id="">
</div>
</div>
<div class="col-md-6">
<div class="mb-3">
<label for="">Email address</label>
<input type="email" class="form-control" placeholder="Enter your email adress" name="email" id="" value = "{{old('email')}}">
<input type="email" class="form-control" placeholder="Enter your email adress" name="email" id="">
</div>
</div>
<div class="col-md-6">
<div class="mb-3">
<label for="">Phone</label>
<input type="text" class="form-control" placeholder="Enter your phone number" name="phone" id="" value = "{{old('phone')}}">
<input type="text" class="form-control" placeholder="Enter your phone number" name="phone" id="">
</div>
</div>
<input type = "hidden" name = "check" value = "1"/>
@ -88,9 +94,9 @@
<div class="mb-3">
<label for="">Services</label>
<select name="service_id" id="" class="form-select">
<option hidden value = ''>Choose service</option>
<option hidden>Choose service</option>
@foreach($services as $service)
<option value="{{$service->id}}" class="aplus-display-select" {{old('service_id') == $service->id ? 'selected' : ''}}>{{$service->name}}</option>
<option value="{{$service->id}}" class="aplus-display-select">{{$service->name}}</option>
@endforeach
</select>
</div>
@ -122,7 +128,7 @@
<div class="col-md-12">
<div class="mb-5">
<label for="">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Write a message.." name="message">{{old('message')}}</textarea>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Write a message.." name="message"></textarea>
</div>
</div>
<div class="submit-btn">
@ -136,7 +142,7 @@
</div>
</section>
<section class="map-section">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3312.5156265342534!2d151.20545281583023!3d-33.876371926884524!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b12ae3d03e36c87%3A0xecb5377dac8c07a8!2s406%2F383%20Pitt%20St%2C%20Sydney%20NSW%202000%2C%20Australia!5e0!3m2!1sen!2snp!4v1671163675803!5m2!1sen!2snp" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3312.514012872817!2d151.2047258!3d-33.8764135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b12ae3c9ed85d5f%3A0x778da1aae43c7216!2sSuite%20503%2C%20Level%205%2F368%20Sussex%20St%2C%20Sydney%20NSW%202000%2C%20Australia!5e0!3m2!1sen!2snp!4v1670397808126!5m2!1sen!2snp" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
@section('script')

@ -28,10 +28,10 @@
<ul>
<li>Find the right cover for you</li>
<li>We'll do the paperwork</li>
<li>Choose your preferred hospital</li>
<li>Choose your preferred Hospital</li>
<li>Save on Tax</li>
<li>Avoid long waiting list</li>
<li>Peace of mind</li>
<li>Avoid Long Waiting List</li>
<li>Peace of Mind</li>
</ul>
</div>
</div>

@ -9,7 +9,7 @@
<section class="labor-agreement-banner" style="background: url('frontend/images/labor-agreement.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item"><a href="/">Aplusagency</a></li>
<li class="breadcrumb-item active" aria-current="page">Recruitment</li>
</ol>
</nav>
@ -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>

@ -46,15 +46,35 @@
<a class="nav-link" href="{{url('/about')}}">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false">
Visas
<a class="nav-link dropdown-toggle" href="{{url('/services')}}" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false">
Services
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
@foreach($visa_services as $visa_service)
<a href="{{url('/visa_service/'.$visa_service->slug)}}" class="dropdown-item">{{$visa_service->name}}</a>
@endforeach
<ul class="dropdown-menu service-dropdown" aria-labelledby="navbarDropdown">
<li class="service-drop-card">
<ul>
<h5>Regional Work Visas</h5>
<li>
@foreach($visa_services as $visa_service)
<a href="{{url('/visa_service/'.$visa_service->slug)}}" class="dropdown-item">{{$visa_service->name}}</a>
@endforeach
</li>
</ul>
<ul>
<h5>Assessments</h5>
@foreach($services as $service)
<li>
@if($service->name == "Recruitment")
<a class="dropdown-item" href="{{url('/recruitment')}}">
@elseif($service->name === "Insurance")
<a class="dropdown-item" href="{{url('/insurance')}}">
@else
<a class="dropdown-item" href="{{url('/service/'.$service->slug)}}">
@endif
{{$service->name}}</a>
</li>
@endforeach
</ul>
</li>
<!-- <li><a class="dropdown-item" href="/service_view">Skill Assessment</a></li>
<li><a class="dropdown-item" href="/service_detail">Permanent Work Visa</a></li> -->
@ -66,14 +86,14 @@
</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')}}">I Need a Chef</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">I am a Chef</a>
<a class="dropdown-item" href="{{url('/labor_agreement')}}">Labour Agreements</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="{{url('/pathway_programme')}}">Education</a>
<a class="nav-link" href="{{url('/pathway_programme')}}">Pathway</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{url('/news')}}">News</a>
@ -113,19 +133,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 +152,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">I Need a Chef</a></li>
<li><a href="/am_chef">I am a Chef</a></li>
<li><a href="/labor_agreement">Labour Agreements</a></li>
</ul>
</div>
@ -146,7 +163,7 @@
<h2>Quick Links</h2>
<ul>
<li><a href="{{url('/about')}}">About us</a></li>
<li><a href="{{url('/pathway_programme')}}">Education</a></li>
<li><a href="{{url('/pathway_programme')}}">Pathway</a></li>
<li><a href="{{url('/news')}}">News</a></li>
<li><a href="{{url('/contact')}}">Contact us</a></li>
</ul>
@ -155,11 +172,11 @@
</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>
<p>DICE © 2022. All Rights Reserved.</p>
</div>
<div class="disclaimer">
<p><a href="">Disclaimer</a> | <a href="">Privacy Policy</a></p>
@ -198,26 +215,23 @@
navHeader.classList.add("header-scroll");
}
if(window.scrollY==0){
if(window.scrollY==0 && location.pathname != '/news/chefs-are-now-included-on-the-list-of-priority-skilled-migrants'){
navHeader.classList.remove("header-scroll");
}
if(window.scrollY==0 && location.pathname === '/news/chefs-are-now-included-on-the-list-of-priority-skilled-migrants'){
navHeader.classList.add("header-scroll");
}
if(window.scrollY==0 && location.pathname === '/news/186-trt-pathway-permanent-residency-applications-for-457-and-482-in-the-short-term-stream'){
navHeader.classList.add("header-scroll");
if(window.scrollY==0 && location.pathname != '/news/186-trt-pathway-permanent-residency-applications-for-457-and-482-in-the-short-term-stream'){
navHeader.classList.remove("header-scroll");
}
if(window.scrollY==0 && location.pathname === '/news/rpl-is-a-solution'){
navHeader.classList.add("header-scroll");
if(window.scrollY==0 && location.pathname != '/news/rpl-is-a-solution'){
navHeader.classList.remove("header-scroll");
}
if(window.scrollY==0 && location.pathname === '/news/skilled-nominated-visa-subclass-190'){
navHeader.classList.add("header-scroll");
if(window.scrollY==0 && location.pathname != '/news/skilled-nominated-visa-subclass-190'){
navHeader.classList.remove("header-scroll");
}
if(window.scrollY==0 && location.pathname === '/news/skilled-work-regional-visa-subclass-491'){
navHeader.classList.add("header-scroll");
if(window.scrollY==0 && location.pathname != '/news/skilled-work-regional-visa-subclass-491'){
navHeader.classList.remove("header-scroll");
}
if(window.scrollY==0 && location.pathname === '/news/more-than-11000-new-chefs-are-expected-to-fill-australias-notorious-chef-shortage-by-2026-key-points'){
navHeader.classList.add("header-scroll");
if(window.scrollY==0 && location.pathname != 'more-than-11000-new-chefs-are-expected-to-fill-australias-notorious-chef-shortage-by-2026-key-points'){
navHeader.classList.remove("header-scroll");
}
}

@ -12,19 +12,19 @@
<section class="need-chef-banner" style="background: url('frontend/images/need-chef.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item"><a href="/">Aplusagency</a></li>
<li class="breadcrumb-item active" aria-current="page">Recruitment</li>
</ol>
</nav>
<div class="chef-banner-content">
<h2>Hospitality Operator’s</h2>
<h2>I need a Chef</h2>
</div>
</section>
<section class="hiring-chef">
<div class="row">
<div class="col-md-6">
<div class="hiring-content">
<h5>Recruitment<hr></h5>
<h5>Hiring <hr></h5>
<h3>Need a Chef or Cook?</h3>
<p>Let us know via our enquiry form.</p>
<h6>What are the next steps?</h6>
@ -49,23 +49,23 @@
<h2>Please fill-up the form</h2>
<div class="mb-3">
<label for="">Full name</label>
<input type="text" class="form-control" placeholder="Your full name" name="full_name" id="" value = "{{old('full_name')}}">
<input type="text" class="form-control" placeholder="Your full name" name="full_name" id="">
</div>
<div class="mb-3">
<label for="">Company</label>
<input type="text" class="form-control" placeholder="Your company name" name="company" id="" value = "{{old('company')}}">
<input type="text" class="form-control" placeholder="Your company name" name="company" id="">
</div>
<div class="mb-3">
<label for="">Email address</label>
<input type="email" class="form-control" placeholder="Your email address" name="email" id="" value = "{{old('email')}}">
<input type="email" class="form-control" placeholder="Your email address" name="email" id="">
</div>
<div class="mb-3">
<label for="">No. of position</label>
<input type="text" class="form-control" placeholder="Required number of position" name="no_of_position" id="" value = "{{old('no_of_position')}}">
<input type="text" class="form-control" placeholder="Required number of position" name="no_of_position" id="">
</div>
<div class="mb-3">
<label for="">Enquiry</label>
<textarea type="text" rows="3" class="form-control" placeholder="Your enquiries.." name="enquiry" id="">{{old('enquiry')}}</textarea>
<textarea type="text" rows="3" class="form-control" placeholder="Your enquiries.." name="enquiry" id=""></textarea>
</div>
@php
$code = Str::random(5);

@ -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,48 +2,23 @@
@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')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Education</li>
</ol>
</nav>
<section class="pathway-banner-section" style="background: url('frontend/images/pathway-banner.png')">
<div class="services-banner-content">
<h2>Education</h2>
</div>
</section>
<section class="service-secondary">
<div class="row">
<div class="col-md-6">
<div class="service-secondary-img">
<img src="{{url('frontend/images/education-image.png')}}" class="w-100" alt="">
</div>
</div>
<div class="col-md-6">
<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>
<a href="/contact">Book An Appointment</a>
</div>
</div>
<h2>Pathway Programme</h2>
</div>
</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>Pathway 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 +29,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 +40,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 +51,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">

@ -7,12 +7,6 @@
@endsection
@section('content')
<section class="service-detail-banner" style="background: url({{url($service->icon)}})">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">{{$service->name}}</li>
</ol>
</nav>
<div class="service-detail-desc">
<h2>{{$service->name}}</h2>
</div>

@ -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>

@ -7,12 +7,6 @@
@endsection
@section('content')
<section class="services-banner-section">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Services</li>
</ol>
</nav>
<div class="services-banner-content">
<h2>Our Services</h2>
</div>
@ -21,8 +15,8 @@
<div class="row g-3">
<div class="col-md-12">
<div class="our-service-head">
<h2>What <span>We</span> Offer</h2>
<p>Delivering excellent and cost-effective solutions to ensure customer satisfaction.</p>
<h2>What We Offer</h2>
<p>Delivering excellent and cost-effective solutions to esnure customer satisfaction.</p>
</div>
</div>
@foreach($services as $service)

@ -12,16 +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
<span data-text="Study Programme"></span>
<span data-text2="Training Programme"></span>
<span data-text3="Skill Assessment"></span>
<span data-text4="Skilled Recruitment"></span>
</h2>
<h2>4 Easy Steps To <br> Permanent Residency <br> In Australia <span></span></h2>
{{-- <h3>{{$slider->title2}}</h3> --}}
{{-- <p>{{$slider->description}}</p> --}}
@ -42,21 +37,17 @@
<section class="achievement-section">
<div class="achievement-items">
<div class="achivement-sec">
<img src="{{url('frontend/icons/success-icon.svg')}}" class="img-fluid" alt="">
<h5>{{$visa_success->value ?? ''}}</h5>
<img src="{{url('frontend/icons/success-icon.svg')}}" class="img-fluid" alt="">
<h5>{{$visa_success->value ?? ''}}</h5>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value ?? ''}} <span>(This year)</span></h5>
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value ?? ''}}</h5>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>{{$partner_institution->value ?? ''}}</h5>
<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>
</div>
</div>
</section>
<!-- Achievement section -->
@ -69,16 +60,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>
@ -147,7 +138,7 @@
<section class="our-recruitment-section">
<div class="our-recruitment-header">
<h2>Our Recruitment Partners</h2>
<p>We have 50+ recruitment partners</p>
<p>We have 200 + recruitment partners</p>
</div>
<div class="slider-partners">
@foreach($partners as $partner)
@ -171,7 +162,7 @@
<!-- news and update section -->
<section class="news-and-update-section">
<div class="news-title">
<h2>News & Updates</h2>
<h2>New & Updates</h2>
</div>
<div class="row">
<div class="col-md-6">
@ -213,7 +204,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 +236,6 @@
</div>
</section>
@endif
<!-- clients section -->
<!-- cotact section -->
<section class="quick-enquiry-setion">
@ -294,7 +283,7 @@
<img src="{{url('frontend/icons/user-icon.svg')}}" alt="">
</span>
</div>
<input type="text" name = "fullname" class="form-control" placeholder="Full Name" value = "{{old('fullname')}}" aria-label="Fullname" aria-describedby="basic-addon1">
<input type="text" name = "fullname" class="form-control" placeholder="Full Name" aria-label="Fullname" aria-describedby="basic-addon1">
</div>
</div>
<div class="col-md-6">
@ -304,7 +293,7 @@
<img src="{{url('frontend/icons/email-enquiry.svg')}}" alt="">
</span>
</div>
<input type="email" name = "email" value = "{{old('email')}}" class="form-control" placeholder="Email" aria-label="Email" aria-describedby="basic-addon1">
<input type="email" name = "email" class="form-control" placeholder="Email" aria-label="Email" aria-describedby="basic-addon1">
</div>
</div>
<div class="col-md-6">
@ -314,7 +303,7 @@
<img src="{{url('frontend/icons/enq-phone-icon.svg')}}" alt="">
</span>
</div>
<input type="text" name = "phone" value = "{{old('phone')}}" class="form-control" placeholder="Phone" aria-label="Phone" aria-describedby="basic-addon1">
<input type="text" name = "phone" class="form-control" placeholder="Phone" aria-label="Phone" aria-describedby="basic-addon1">
</div>
</div>
<div class="col-md-6">
@ -327,7 +316,7 @@
<select class="form-select" id="inputGroupSelect01" name = "service_id">
<option hidden>Choose Services</option>
@foreach($services as $service)
<option value="{{$service->id}}" {{old('service_id') == $service->id ? 'selected' : ''}}>
<option value="{{$service->id}}">
{{$service->name}}
</option>
@endforeach
@ -341,7 +330,7 @@
<img src="{{url('frontend/icons/Chat_plus_light.svg')}}" alt="">
</label>
</div>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Message" name="message">{{old('message')}}</textarea>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Message" name="message"></textarea>
</div>
</div>
<div class="col-md-12">

Loading…
Cancel
Save