Compare commits

...

19 Commits

  1. 6
      app/Http/Controllers/Admin/SettingController.php
  2. 8
      app/Http/Controllers/HomeController.php
  3. 27
      app/Http/Controllers/RecruitmentController.php
  4. 18
      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. 97
      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. 4
      resources/views/am_chef.blade.php
  33. 34
      resources/views/contact.blade.php
  34. 6
      resources/views/insurance.blade.php
  35. 22
      resources/views/labor_agreement.blade.php
  36. 63
      resources/views/layout/app.blade.php
  37. 8
      resources/views/need_chef.blade.php
  38. 2
      resources/views/news.blade.php
  39. 83
      resources/views/news_detail.blade.php
  40. 39
      resources/views/pathway_programme.blade.php
  41. 19
      resources/views/recruitment.blade.php
  42. 4
      resources/views/service_view.blade.php
  43. 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 $image_folder_type = array_search('setting',config('custom.image_folders')); //for image saved in folder
$count = rand(100,999); $count = rand(100,999);
$out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type); $out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type);
$image_path = $out_put_path[0]; is_array($out_put_path) ? $image_path = $out_put_path[0] : $image_path = $out_put_path;
$setting->value = $image_path; $setting->value = $image_path;
} }
@ -126,7 +126,7 @@ class SettingController extends Controller
if(request('type') == array_search('Image',config('custom.setting_types'))){ if(request('type') == array_search('Image',config('custom.setting_types'))){
if(\request('value')){ if(\request('value')){
$this->validate($request,[ $this->validate($request,[
'value'=>'required|file|mimes:jpeg,png,jpg,pdf' 'value'=>'required|file|mimes:jpeg,png,jpg,pdf,mp4'
] ]
); );
@ -135,7 +135,7 @@ class SettingController extends Controller
$image_folder_type = array_search('setting',config('custom.image_folders')); //for image saved in folder $image_folder_type = array_search('setting',config('custom.image_folders')); //for image saved in folder
$count = rand(100,999); $count = rand(100,999);
$out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type); $out_put_path = User::save_image(\request('value'),$extension,$count,$image_folder_type);
$image_path = $out_put_path[0]; is_array($out_put_path) ? $image_path = $out_put_path[0] : $image_path = $out_put_path;
$setting->value = $image_path; $setting->value = $image_path;
} }
} }

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

@ -6,19 +6,15 @@ use App\Models\Recruitment;
use App\Models\Applicant; use App\Models\Applicant;
use App\Models\User; use App\Models\User;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use App\Http\Requests\Recruitment\ApplyRequest;
use App\Http\Requests\Recruitment\VacancyRequest;
class RecruitmentController extends Controller class RecruitmentController extends Controller
{ {
public function save_vacancy(Request $request){ public function save_vacancy(VacancyRequest $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(); $recruitment = new Recruitment();
$subject = 'Recruitment Enquiry'; $subject = htmlentities('Recruitment Enquiry');
$recruitment->full_name = $request['full_name']; $recruitment->full_name = $request['full_name'];
$recruitment->company = $request['company']; $recruitment->company = $request['company'];
@ -55,17 +51,8 @@ class RecruitmentController extends Controller
return redirect()->back()->with(['msg' => 'Thank you! Your recruitment details have been recieved.']); return redirect()->back()->with(['msg' => 'Thank you! Your recruitment details have been recieved.']);
} }
public function apply(Request $request){ public function apply(ApplyRequest $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(); $recruitment = new Applicant();
$subject = 'Applicant Enquiry'; $subject = 'Applicant Enquiry';

@ -13,7 +13,7 @@ class ContactRequest extends FormRequest
*/ */
public function authorize() public function authorize()
{ {
return false; return true;
} }
/** /**
@ -24,21 +24,23 @@ class ContactRequest extends FormRequest
public function rules() public function rules()
{ {
return [ return [
'fullname' => 'required', 'fullname' => ['required'],
'phone' => 'required', 'phone' => ['required'],
'email' => 'required', 'email' => ['required'],
'service_id' => 'required|numeric', 'service_id' => ['required'],
'entered_captcha_code' => 'required|same:displayed_captcha_code' 'entered_captcha_code' => ['required','same:displayed_captcha_code']
]; ];
} }
public function message(){ public function messages(){
return[ return[
'fullname.required' => 'Full name is required.', 'fullname.required' => 'Full name is required.',
'phone.required' => 'Phone is required.', 'phone.required' => 'Phone number is required.',
'email.required' => 'Email is required.', 'email.required' => 'Email is required.',
'service_id.required' => 'Please select a service.', 'service_id.required' => 'Please select a service.',
'entered_captcha_code.required' => 'Please enter captcha.',
'entered_captcha_code.same' => 'Captcha is incorrect.'
]; ];
} }

@ -0,0 +1,51 @@
<?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.'
];
}
}

@ -0,0 +1,45 @@
<?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,6 +233,20 @@ class User extends Authenticatable
return($target_path.$target_file); 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; font-size: 14px;
} }
.service-dropdown{ .service-dropdown{
width: 600px; width: 350px;
transform: translate(-30%, 0%); transform: translate(-30%, 0%);
} }
.service-drop-card{ .service-drop-card{
@ -264,7 +264,7 @@ Responsive Codes
height: 100%; height: 100%;
top: 0; top: 0;
left: 0; left: 0;
box-shadow: inset 0 1700px rgb(0 0 0 / 45%) !important; box-shadow: inset 0 1700px rgba(0, 0, 0, 0.02) !important;
} }
.banner-section .banner-description{ .banner-section .banner-description{
position: absolute; position: absolute;
@ -272,8 +272,9 @@ Responsive Codes
left: 6%; left: 6%;
} }
.banner-description span::before{ .banner-description span::before{
content: "Study Programme"; content: attr(data-text);
animation: 12s animate infinite; animation: 12s animate infinite;
animation-delay: 500ms;
padding-left: 10px; padding-left: 10px;
color: #F54C5F; color: #F54C5F;
} }
@ -298,7 +299,7 @@ Responsive Codes
.banner-description h2, .banner-description-two h2, .banner-description-three h2{ .banner-description h2, .banner-description-two h2, .banner-description-three h2{
font-weight: 800; font-weight: 800;
font-size: 54px; font-size: 54px;
line-height: 78px; line-height: 74px;
color: #FFFFFF; color: #FFFFFF;
} }
@keyframes anim-lineUp { @keyframes anim-lineUp {
@ -325,16 +326,17 @@ Responsive Codes
@keyframes animate { @keyframes animate {
0% { 0% {
content: "Study Programme"; content: attr(data-text);
} }
50% { 50% {
content: "Training Programme"; content: attr(data-text2);
} }
75% { 75% {
content: "Skill Assessment"; content: attr(data-text3);
} }
100%{ 100%{
content: "Skilled Recruitment"; content: attr(data-text4);
} }
} }
.banner-description h3, .banner-description-two h3, .banner-description-three h3{ .banner-description h3, .banner-description-two h3, .banner-description-three h3{
@ -366,6 +368,12 @@ Responsive Codes
align-items: center; align-items: center;
gap: 15px; gap: 15px;
} }
.achivement-sec span{
font-weight: 500;
font-size: 14px;
line-height: 2rem;
color: #202023;
}
/* about us section css */ /* about us section css */
.about-us-section{ .about-us-section{
padding: 3rem 6rem; padding: 3rem 6rem;
@ -374,7 +382,8 @@ Responsive Codes
.service-primary .row, .service-primary .row,
.service-secondary .row, .service-secondary .row,
.service-view-last .row, .service-view-last .row,
.insurance-desc .row{ .insurance-desc .row,
.service-detail-secondary .row{
display: flex; display: flex;
align-items: center; align-items: center;
} }
@ -1024,7 +1033,7 @@ Responsive Codes
.chef-hire-form h2{ .chef-hire-form h2{
font-weight: 500; font-weight: 500;
font-size: 22px; font-size: 22px;
line-height: 178%; line-height: 1.8rem;
text-align: center; text-align: center;
color: #0A2849; color: #0A2849;
margin-bottom: 30px; margin-bottom: 30px;
@ -1298,7 +1307,11 @@ Responsive Codes
line-height: 1.7rem; line-height: 1.7rem;
color: #F54C5F; color: #F54C5F;
} }
.service-detail-sectwo ul{ .service-detail-sectwo ul,
.service-primary-desc ul,
.insurance-content ul,
.labor-section-primary ul,
.labor-section-secondary ul{
padding-left: 1rem; padding-left: 1rem;
margin-top: 0.2rem; margin-top: 0.2rem;
} }
@ -1307,9 +1320,11 @@ Responsive Codes
.insurance-content ul li, .insurance-content ul li,
.labor-section-primary ul li, .labor-section-primary ul li,
.labor-section-secondary ul li{ .labor-section-secondary ul li{
display: flex;
align-items: center;
list-style: none; list-style: none;
position: relative;
padding-left: 40px;
line-height: 29px;
margin-top: 10px;
} }
.service-detail-sectwo ul li::before, .service-detail-sectwo ul li::before,
.service-primary-desc ul li::before, .service-primary-desc ul li::before,
@ -1318,11 +1333,9 @@ Responsive Codes
.labor-section-secondary ul li::before { .labor-section-secondary ul li::before {
content: url(../icons/christmas-star-new.svg); content: url(../icons/christmas-star-new.svg);
color: #071C39; color: #071C39;
display: inline-block; position: absolute;
margin-right: 0.6em; top: 4px;
margin-left: -1.3em; left: 0;
margin-top: 8px;
width: 1.3em;
} }
.service-detail-third{ .service-detail-third{
background: #F7F7F9; background: #F7F7F9;
@ -1475,14 +1488,24 @@ Responsive Codes
padding: 3rem 6rem; 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%); 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-primary-img, .service-secondary .service-secondary-img{
.service-secondary-img{ position: absolute;
bottom: 0;
left: 0;
width: 50%;
}
.service-primary-img{
margin-right: 25px; margin-right: 25px;
} }
.service-secondary{ .service-detail-secondary{
padding: 3rem 6rem 0 6rem; padding: 3rem 6rem 0 6rem;
background: #E54A5F; background: #E54A5F;
} }
.service-secondary{
position: relative;
padding: 3rem 6rem;
background: #E54A5F;
}
.service-secondary-desc h3{ .service-secondary-desc h3{
font-weight: 700; font-weight: 700;
font-size: 38px; font-size: 38px;
@ -1492,7 +1515,7 @@ Responsive Codes
.service-secondary-desc p{ .service-secondary-desc p{
font-weight: 500; font-weight: 500;
font-size: 16px; font-size: 16px;
line-height: 1.8rem; line-height: 1.6rem;
color: #FFFFFF; color: #FFFFFF;
margin-bottom: 25px; margin-bottom: 25px;
} }
@ -1561,19 +1584,24 @@ Responsive Codes
justify-content: space-between; justify-content: space-between;
background: #F3F3F3; background: #F3F3F3;
border-radius: 15px; border-radius: 15px;
min-height: 46pc; min-height: 50pc;
} }
.need-chef-card:hover{ .need-chef-card:hover{
background: #104682; background: #104682;
} }
.need-chef-card:hover p, .need-chef-card:hover p,
.need-chef-card:hover h4, .need-chef-card:hover h4,
.need-chef-card:hover h6{ .need-chef-card:hover h6,
.need-chef-card:hover span{
color: #FFFFFF; color: #FFFFFF;
} }
.need-chef-top{ .need-chef-top{
padding: 30px; padding: 30px;
} }
.need-chef-top span{
color: #0E4F97;
text-decoration: underline;
}
/* insurance page css */ /* insurance page css */
.insurance-banner{ .insurance-banner{
padding: 6rem; padding: 6rem;
@ -1660,7 +1688,7 @@ Responsive Codes
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
padding: 30px 20px; padding: 30px 20px;
min-height: 22pc; min-height: 25pc;
} }
.pathway-steps-icon{ .pathway-steps-icon{
background: #FFFFFF; background: #FFFFFF;
@ -1678,6 +1706,9 @@ Responsive Codes
color: #FFFFFF; color: #FFFFFF;
text-align: center; text-align: center;
} }
.immigration-logo{
width: 65%;
}
@media only screen and (min-width: 320px) and (max-width: 480px) { @media only screen and (min-width: 320px) and (max-width: 480px) {
h2{ h2{
@ -1702,7 +1733,8 @@ Responsive Codes
.recruitment-banner .breadcrumb, .recruitment-banner .breadcrumb,
.news-banner-section .breadcrumb, .news-banner-section .breadcrumb,
.services-banner-section .breadcrumb, .services-banner-section .breadcrumb,
.pathway-banner-section .breadcrumb{ .pathway-banner-section .breadcrumb,
.labor-agreement-banner .breadcrumb{
display: none; display: none;
} }
.banner-section .banner-description { .banner-section .banner-description {
@ -1731,7 +1763,7 @@ Responsive Codes
display: none; display: none;
} }
.contact-form{ .contact-form{
margin: 10px; margin: 25px 0;
} }
.contact-captcha{ .contact-captcha{
display: flex; display: flex;
@ -1765,7 +1797,8 @@ Responsive Codes
.insurance-desc, .insurance-desc,
.labor-section-primary, .labor-section-primary,
.labor-section-secondary, .labor-section-secondary,
.pathway-steps-section{ .pathway-steps-section,
.service-detail-secondary{
padding: 2rem; padding: 2rem;
} }
.visa-services, .visa-services,
@ -1848,11 +1881,17 @@ Responsive Codes
background:rgb(231, 231, 231); background:rgb(231, 231, 231);
} }
.service-primary-img, .service-primary-img,
.service-secondary-img,
.service-last-img, .service-last-img,
.insurance-desc-img{ .insurance-desc-img{
margin: 0 0 20px 0; 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){ @media only screen and (min-width: 768px) and (max-width: 1024px){
html { html {

Binary file not shown.

After

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: 770 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 712 B

After

Width:  |  Height:  |  Size: 712 B

@ -1,5 +1,5 @@
<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"> <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="39" height="39" fill="url(#pattern0)"/> <rect width="37" height="37" fill="url(#pattern0)"/>
<defs> <defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1"> <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_390_30" transform="scale(0.00195312)"/> <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

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -1,5 +1,5 @@
<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"> <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="42" height="42" fill="url(#pattern0)"/> <rect width="37" height="37" fill="url(#pattern0)"/>
<defs> <defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1"> <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_390_31" transform="scale(0.00195312)"/> <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.

After

Width:  |  Height:  |  Size: 506 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 KiB

@ -17,7 +17,7 @@
</ol> </ol>
</nav> </nav>
<div class="chef-banner-content"> <div class="chef-banner-content">
<h2>I am Chef</h2> <h2>Hospitality Candidates</h2>
</div> </div>
</section> </section>
<section class="hiring-chef"> <section class="hiring-chef">
@ -26,7 +26,7 @@
<div class="hiring-content"> <div class="hiring-content">
<h5>Hiring <hr></h5> <h5>Hiring <hr></h5>
<h3>Looking for a job as a Chef or Cook?</h3> <h3>Looking for a job as a Chef or Cook?</h3>
<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> <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>
<h6>Chefs and Cooks need to be</h6> <h6>Chefs and Cooks need to be</h6>
<ul> <ul>
<li> Interested in food and cooking</li> <li> Interested in food and cooking</li>

@ -36,27 +36,21 @@
one of our migration agents will be in touch. one of our migration agents will be in touch.
</p> </p>
<div class="contact-desc"> <div class="contact-desc">
@if($phone !== null) @if(!is_null($phone))
<a href="tel: {{$phone->value}}" class="contact-phone"> <a href="tel: {{$phone->value}}" class="contact-phone">
<div class="contact-icons"> <img src="{{url('frontend/icons/contact-call-icon.svg')}}" alt="">
<img src="{{url('frontend/icons/contact-call-icon.svg')}}" class="img-fluid" alt="">
</div>
<h5>{{$phone->value}}</h5> <h5>{{$phone->value}}</h5>
</a> </a>
@endif @endif
@if($email !== null) @if(!is_null($email))
<a href="mailto: {{$email->value}}" class="contact-phone"> <a href="mailto: {{$email->value}}" class="contact-phone">
<div class="contact-icons"> <img src="{{url('frontend/icons/contact-mail-icon.svg')}}" alt="">
<img src="{{url('frontend/icons/contact-mail-icon.svg')}}" class="img-fluid" alt="">
</div>
<h5>{{$email->value}}</h5> <h5>{{$email->value}}</h5>
</a> </a>
@endif @endif
@if($address !== null) @if(!is_null($address))
<a href="https://goo.gl/maps/P4Y2PYGMpGa83L2R8" target="_blank" class="contact-phone"> <a href="https://goo.gl/maps/P4Y2PYGMpGa83L2R8" target="_blank" class="contact-phone">
<div class="contact-icons"> <img src="{{url('frontend/icons/contact-location-icon.svg')}}" alt="">
<img src="{{url('frontend/icons/contact-location-icon.svg')}}" class="img-fluid" alt="">
</div>
<h5>{{$address->value}}</h5> <h5>{{$address->value}}</h5>
</a> </a>
@endif @endif
@ -74,7 +68,7 @@
<div class="col-md-6"> <div class="col-md-6">
<div class="mb-3"> <div class="mb-3">
<label for="">Full name</label> <label for="">Full name</label>
<input type="text" class="form-control" placeholder="Enter your name" name="fullname" id="" value = "{{old('fullname')}}"> <input type="text" class="form-control" placeholder="Enter your full name" name="fullname" id="" value = "{{old('fullname')}}">
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
@ -94,9 +88,9 @@
<div class="mb-3"> <div class="mb-3">
<label for="">Services</label> <label for="">Services</label>
<select name="service_id" id="" class="form-select"> <select name="service_id" id="" class="form-select">
<option hidden>Choose service</option> <option hidden value = ''>Choose service</option>
@foreach($services as $service) @foreach($services as $service)
<option value="{{$service->id}}" class="aplus-display-select">{{$service->name}}</option> <option value="{{$service->id}}" class="aplus-display-select" {{old('service_id') == $service->id ? 'selected' : ''}}>{{$service->name}}</option>
@endforeach @endforeach
</select> </select>
</div> </div>
@ -142,7 +136,7 @@
</div> </div>
</section> </section>
<section class="map-section"> <section class="map-section">
<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> <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>
</section> </section>
@section('script') @section('script')

@ -28,10 +28,10 @@
<ul> <ul>
<li>Find the right cover for you</li> <li>Find the right cover for you</li>
<li>We'll do the paperwork</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>Save on Tax</li>
<li>Avoid Long Waiting List</li> <li>Avoid long waiting list</li>
<li>Peace of Mind</li> <li>Peace of mind</li>
</ul> </ul>
</div> </div>
</div> </div>

@ -9,7 +9,7 @@
<section class="labor-agreement-banner" style="background: url('frontend/images/labor-agreement.png')"> <section class="labor-agreement-banner" style="background: url('frontend/images/labor-agreement.png')">
<nav aria-label="breadcrumb"> <nav aria-label="breadcrumb">
<ol class="breadcrumb"> <ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Aplusagency</a></li> <li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Recruitment</li> <li class="breadcrumb-item active" aria-current="page">Recruitment</li>
</ol> </ol>
</nav> </nav>
@ -18,13 +18,17 @@
</div> </div>
</section> </section>
<section class="labor-section-primary"> <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> <h5>Restaurant <hr></h5>
<h2>Labour Agreement – Restaurant (Premium Dining)</h2> <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> <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="row">
<div class="col-md-6"> <div class="col-md-6">
<h4>You must adhere to the following entry requirements to be eligible.</h4> <h4>You must adhere to the following entry requirements to be eligible.</h4>
<ul> <ul class="mt-3">
<li>Should have highly experienced employee</li> <li>Should have highly experienced employee</li>
<li>Offer wine list</li> <li>Offer wine list</li>
<li>Has at least $2 million in annual income</li> <li>Has at least $2 million in annual income</li>
@ -35,7 +39,7 @@
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<h4>Under the Labour Agreement- Restaurant (Premium Dining), it will be possible to sponsor:</h4> <h4>Under the Labour Agreement- Restaurant (Premium Dining), it will be possible to sponsor:</h4>
<ul> <ul class="mt-3">
<li>Chefs (351311) (351311)</li> <li>Chefs (351311) (351311)</li>
<li>Cooks (351411) (351411)</li> <li>Cooks (351411) (351411)</li>
<li>Restaurant and Café Manager (141111)</li> <li>Restaurant and Café Manager (141111)</li>
@ -43,15 +47,15 @@
</ul> </ul>
</div> </div>
</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> <br><br>
Currently, the age limit for the Subclass 186 Vis is under 55 years. Currently, the age limit for the Subclass 186 Visa is under 45 years.
</p> </p>
<h4>The following must require under TSS and SESR visa for Nominee,</h4> <h4>The following must require under TSS and SESR visa for Nominee,</h4>
<ul> <ul class="mt-3">
<li>An overall IELTS 5.0 (or equivalent),</li> <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.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.0 for reading and writing.</li>
</ul> </ul>
</section> </section>
<section class="labor-section-secondary"> <section class="labor-section-secondary">
@ -59,7 +63,7 @@
<h2>Labour Agreement- Hotel and Accommodation</h2> <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> <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> <h4>Under the Hotel and Accommodation Labour Agreement, you will be able to sponsor the following occupations:</h4>
<ul> <ul class="mt-3">
<li>Café or Restaurant Manager (141111)</li> <li>Café or Restaurant Manager (141111)</li>
<li>Hotel or Motel Manager (141311)</li> <li>Hotel or Motel Manager (141311)</li>
<li>Hotel Service manager (431411)</li> <li>Hotel Service manager (431411)</li>

@ -46,35 +46,15 @@
<a class="nav-link" href="{{url('/about')}}">About</a> <a class="nav-link" href="{{url('/about')}}">About</a>
</li> </li>
<li class="nav-item dropdown"> <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="{{url('/services')}}" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false"> <a class="nav-link dropdown-toggle" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false">
Services Visas
</a> </a>
<ul class="dropdown-menu service-dropdown" aria-labelledby="navbarDropdown"> <ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li class="service-drop-card"> <li>
<ul> @foreach($visa_services as $visa_service)
<h5>Regional Work Visas</h5> <a href="{{url('/visa_service/'.$visa_service->slug)}}" class="dropdown-item">{{$visa_service->name}}</a>
<li> @endforeach
@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>
<!-- <li><a class="dropdown-item" href="/service_view">Skill Assessment</a></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> --> <li><a class="dropdown-item" href="/service_detail">Permanent Work Visa</a></li> -->
@ -86,14 +66,14 @@
</a> </a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown"> <ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li> <li>
<a class="dropdown-item" href="{{url('/need_chef')}}">I Need a Chef</a> <a class="dropdown-item" href="{{url('/need_chef')}}">Hospitality Operator</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">I am a Chef</a> <a class="dropdown-item" href="{{url('/am_chef')}}">Hospitality Candidate</a>
<a class="dropdown-item" href="{{url('/labor_agreement')}}">Labour Agreements</a> <a class="dropdown-item" href="{{url('/labor_agreement')}}">Labour Agreements</a>
</li> </li>
</ul> </ul>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('/pathway_programme')}}">Pathway</a> <a class="nav-link" href="{{url('/pathway_programme')}}">Education</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('/news')}}">News</a> <a class="nav-link" href="{{url('/news')}}">News</a>
@ -133,16 +113,19 @@
<div class="row"> <div class="row">
<div class="col-md-3"> <div class="col-md-3">
<div class="footer-desc"> <div class="footer-desc">
<img src="{{url('frontend/images/logo.png')}}" class="img-fluid" alt=""> <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 achieve Permanent Residency in Australia</p> <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>
</div> </div>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<div class="visa-services"> <div class="visa-services">
<h2>Visa Services</h2> <h2>Visa Services</h2>
<ul> <ul>
@foreach($services as $service) @foreach($visa_services as $service)
<li><a href="{{url('/service/'.$service->slug)}}">{{$service->name}}</a></li> <li><a href="{{url('/visa_service/'.$service->slug)}}">{{$service->name}}</a></li>
@endforeach @endforeach
</ul> </ul>
@ -152,8 +135,8 @@
<div class="recruitment"> <div class="recruitment">
<h2>Recruitment</h2> <h2>Recruitment</h2>
<ul> <ul>
<li><a href="/need_chef">I Need a Chef</a></li> <li><a href="/need_chef">Hospitality Operator</a></li>
<li><a href="/am_chef">I am a Chef</a></li> <li><a href="/am_chef">Hospitality Candidate</a></li>
<li><a href="/labor_agreement">Labour Agreements</a></li> <li><a href="/labor_agreement">Labour Agreements</a></li>
</ul> </ul>
</div> </div>
@ -163,7 +146,7 @@
<h2>Quick Links</h2> <h2>Quick Links</h2>
<ul> <ul>
<li><a href="{{url('/about')}}">About us</a></li> <li><a href="{{url('/about')}}">About us</a></li>
<li><a href="{{url('/pathway_programme')}}">Pathway</a></li> <li><a href="{{url('/pathway_programme')}}">Education</a></li>
<li><a href="{{url('/news')}}">News</a></li> <li><a href="{{url('/news')}}">News</a></li>
<li><a href="{{url('/contact')}}">Contact us</a></li> <li><a href="{{url('/contact')}}">Contact us</a></li>
</ul> </ul>
@ -172,11 +155,11 @@
</div> </div>
</div> </div>
<div class="footer-bottom"> <div class="footer-bottom">
<div class="abn"> <div class="copyright">
<p>ABN : 97654871011 </p> <p>MIGRATION AGENT’S NUMBER MARN: 1463534</p>
</div> </div>
<div class="copyright"> <div class="copyright">
<p>DICE © 2022. All Rights Reserved.</p> <p>APLUS © 2022. All Rights Reserved.</p>
</div> </div>
<div class="disclaimer"> <div class="disclaimer">
<p><a href="">Disclaimer</a> | <a href="">Privacy Policy</a></p> <p><a href="">Disclaimer</a> | <a href="">Privacy Policy</a></p>

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

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

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

@ -2,29 +2,48 @@
@section('title') @section('title')
<title>Pathway Programme</title> <title>Pathway Programme</title>
<meta name="description" content="Delivering excellent and cost-effective solutions to esnure customer satisfaction."/> <meta name="description" content="Delivering excellent and cost-effective solutions to esnure customer satisfaction."/>
<meta name="og:title" content="Pathway Programme"/> <meta name="og:title" content="Education"/>
<meta name="og:image" content="{{url('frontend/images/pathway-banner.png')}}"/> <meta name="og:image" content="{{url('frontend/images/education-banner.png')}}"/>
@endsection @endsection
@section('content') @section('content')
<section class="pathway-banner-section" style="background: url('frontend/images/pathway-banner.png')"> <section class="pathway-banner-section" style="background: url('frontend/images/education-banner.png')">
<nav aria-label="breadcrumb"> <nav aria-label="breadcrumb">
<ol class="breadcrumb"> <ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li> <li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Pathway Programme</li> <li class="breadcrumb-item active" aria-current="page">Education</li>
</ol> </ol>
</nav> </nav>
<div class="services-banner-content"> <div class="services-banner-content">
<h2>Pathway Programme</h2> <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>
</div> </div>
</section> </section>
<section class="pathway-steps-section"> <section class="pathway-steps-section">
<div class="pathway-step-header"> <div class="pathway-step-header">
<h2><span>Pathway</span> to Australian PR through 4 simple steps</h2> <h2><span>Pathway</span> to a Successful Future In Australia 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> <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> <h5>Here are a few easy steps that could help you follow this road.</h5>
</div> </div>
<div class="row g-4"> <div class="row g-4">
<div class="col-md-3"> <div class="col-lg-3 col-md-6">
<div class="pathway-step-card"> <div class="pathway-step-card">
<div class="pathway-steps-icon"> <div class="pathway-steps-icon">
<img src="{{url('frontend/icons/write-blue.svg')}}" alt=""> <img src="{{url('frontend/icons/write-blue.svg')}}" alt="">
@ -35,7 +54,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-md-3"> <div class="col-lg-3 col-md-6">
<div class="pathway-step-card"> <div class="pathway-step-card">
<div class="pathway-steps-icon"> <div class="pathway-steps-icon">
<img src="{{url('frontend/icons/online-learning.svg')}}" alt=""> <img src="{{url('frontend/icons/online-learning.svg')}}" alt="">
@ -46,7 +65,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-md-3"> <div class="col-lg-3 col-md-6">
<div class="pathway-step-card"> <div class="pathway-step-card">
<div class="pathway-steps-icon"> <div class="pathway-steps-icon">
<img src="{{url('frontend/icons/efficiency.svg')}}" alt=""> <img src="{{url('frontend/icons/efficiency.svg')}}" alt="">
@ -57,7 +76,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-md-3"> <div class="col-lg-3 col-md-6">
<div class="pathway-step-card"> <div class="pathway-step-card">
<div class="pathway-steps-icon"> <div class="pathway-steps-icon">
<img src="{{url('frontend/icons/recruitment-icon.svg')}}" alt=""> <img src="{{url('frontend/icons/recruitment-icon.svg')}}" alt="">

@ -27,13 +27,13 @@
<a href="/need_chef"> <a href="/need_chef">
<div class="need-chef-card"> <div class="need-chef-card">
<div class="need-chef-top"> <div class="need-chef-top">
<h4>I need a Chef</h4> <h4>I am a Hospitality Operator</h4>
<h6>Connecting People and Businesses</h6> <h6>Our goal is to connect highly skilled people with hospitality operators.</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. <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.
<br><br> <br><br>
Need help finding the best chef for your business? Whatever you need, we will help to find the right talent! Need help finding the best candidates for your business? Whatever you need, we work relentlessly to provide the best talent for your business.
<br><br> <br><br>
Please get in touch via our enquiry form. We would love to find out how we can help you! Please get in touch via our <span>enquiry form</span> . We would love to find out how we can help you!
</p> </p>
</div> </div>
<div class="need-chef-card-img text-center"> <div class="need-chef-card-img text-center">
@ -46,13 +46,12 @@
<a href="/am_chef"> <a href="/am_chef">
<div class="need-chef-card"> <div class="need-chef-card">
<div class="need-chef-top"> <div class="need-chef-top">
<h4>I am Chef</h4> <h4>I am A Hospitality Candidate</h4>
<h6>We help you Grow, Choose a Job you Love</h6> <p>At A-PLUS we are obsessed with enabling individuals to further progress within their careers.
<p>A Plus Agency gives hospitality workers like you the ultimate freedom & choice, supports you throughout your employment and provides protection.
<br><br> <br><br>
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. 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.
<br><br> <br><br>
Are you a chef looking for work? We would love to hear from you! 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.
</p> </p>
</div> </div>
<div class="need-chef-card-img text-center"> <div class="need-chef-card-img text-center">

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

@ -12,11 +12,16 @@
<!-- Slider section --> <!-- Slider section -->
<section class="banner-section" > <section class="banner-section" >
<video id="vid" autoplay playsinline loop muted> <video id="vid" autoplay playsinline loop muted>
<source src="{{url('frontend/video/aplus-video.mp4')}}" type="video/mp4"> <source src="{{url($video->value)}}" type="video/mp4">
</video> </video>
<span class="banner-shadow"></span> <span class="banner-shadow"></span>
<div class="banner-description"> <div class="banner-description">
<h2>4 Easy Steps To <br> Permanent Residency <br> In Australia <span></span></h2> <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>
{{-- <h3>{{$slider->title2}}</h3> --}} {{-- <h3>{{$slider->title2}}</h3> --}}
{{-- <p>{{$slider->description}}</p> --}} {{-- <p>{{$slider->description}}</p> --}}
@ -37,17 +42,21 @@
<section class="achievement-section"> <section class="achievement-section">
<div class="achievement-items"> <div class="achievement-items">
<div class="achivement-sec"> <div class="achivement-sec">
<img src="{{url('frontend/icons/success-icon.svg')}}" class="img-fluid" alt=""> <img src="{{url('frontend/icons/success-icon.svg')}}" class="img-fluid" alt="">
<h5>{{$visa_success->value ?? ''}}</h5> <h5>{{$visa_success->value ?? ''}}</h5>
</div> </div>
<div class="achivement-sec"> <div class="achivement-sec">
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt=""> <img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value ?? ''}}</h5> <h5>{{$visa_approved->value ?? ''}} <span>(This year)</span></h5>
</div> </div>
<div class="achivement-sec"> <div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt=""> <img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>{{$partner_institution->value ?? ''}}</h5> <h5>{{$partner_institution->value ?? ''}}</h5>
</div> </div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/business-icon.png')}}" alt="">
<h5>{{$employers->value ?? ''}}</h5>
</div>
</div> </div>
</section> </section>
<!-- Achievement section --> <!-- Achievement section -->
@ -60,16 +69,16 @@
<div class="col-md-6"> <div class="col-md-6">
<div class="about-us-sec"> <div class="about-us-sec">
<h2>A-Plus Australia Agency</h2> <h2>A-Plus Australia Agency</h2>
<h4>We will help you achieve Permanent Residency in Australia</h4> <h4>We will help you secure a long-lasting future in Australia</h4>
<p>The success in your life comes from you thriving in the things that you are most passionate about. <p>The success in your life comes from you thriving in the things that you are most passionate about.
<br><br> <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> </p>
<h5>Why Choose A-Plus Australia Agency?</h5> <h5>Why Choose A-Plus Australia Agency?</h5>
<ul> <ul>
<li>100% Success</li> <li>100% Success</li>
<li>Pathway to Parmanent</li> <li>Proven pathways to a successful future in Australia.</li>
<li>You are our first Priority</li> <li>You are our priority</li>
</ul> </ul>
<a href="{{url('/about')}}">View More</a> <a href="{{url('/about')}}">View More</a>
</div> </div>
@ -138,7 +147,7 @@
<section class="our-recruitment-section"> <section class="our-recruitment-section">
<div class="our-recruitment-header"> <div class="our-recruitment-header">
<h2>Our Recruitment Partners</h2> <h2>Our Recruitment Partners</h2>
<p>We have 200 + recruitment partners</p> <p>We have 50+ recruitment partners</p>
</div> </div>
<div class="slider-partners"> <div class="slider-partners">
@foreach($partners as $partner) @foreach($partners as $partner)
@ -162,7 +171,7 @@
<!-- news and update section --> <!-- news and update section -->
<section class="news-and-update-section"> <section class="news-and-update-section">
<div class="news-title"> <div class="news-title">
<h2>New & Updates</h2> <h2>News & Updates</h2>
</div> </div>
<div class="row"> <div class="row">
<div class="col-md-6"> <div class="col-md-6">
@ -204,6 +213,7 @@
</section> </section>
<!-- news and update section --> <!-- news and update section -->
<!-- clients section --> <!-- clients section -->
@if(count($testimonials) > 0)
<section class="clients-section"> <section class="clients-section">
<div class="clients-header text-center"> <div class="clients-header text-center">
<h2>What our Clients say about us?</h2> <h2>What our Clients say about us?</h2>
@ -236,6 +246,7 @@
</div> </div>
</section> </section>
@endif
<!-- clients section --> <!-- clients section -->
<!-- cotact section --> <!-- cotact section -->
<section class="quick-enquiry-setion"> <section class="quick-enquiry-setion">
@ -283,7 +294,7 @@
<img src="{{url('frontend/icons/user-icon.svg')}}" alt=""> <img src="{{url('frontend/icons/user-icon.svg')}}" alt="">
</span> </span>
</div> </div>
<input type="text" name = "fullname" class="form-control" placeholder="Full Name" aria-label="Fullname" aria-describedby="basic-addon1"> <input type="text" name = "fullname" class="form-control" placeholder="Full Name" value = "{{old('fullname')}}" aria-label="Fullname" aria-describedby="basic-addon1">
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
@ -293,7 +304,7 @@
<img src="{{url('frontend/icons/email-enquiry.svg')}}" alt=""> <img src="{{url('frontend/icons/email-enquiry.svg')}}" alt="">
</span> </span>
</div> </div>
<input type="email" name = "email" class="form-control" placeholder="Email" aria-label="Email" aria-describedby="basic-addon1"> <input type="email" name = "email" value = "{{old('email')}}" class="form-control" placeholder="Email" aria-label="Email" aria-describedby="basic-addon1">
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
@ -303,7 +314,7 @@
<img src="{{url('frontend/icons/enq-phone-icon.svg')}}" alt=""> <img src="{{url('frontend/icons/enq-phone-icon.svg')}}" alt="">
</span> </span>
</div> </div>
<input type="text" name = "phone" class="form-control" placeholder="Phone" aria-label="Phone" aria-describedby="basic-addon1"> <input type="text" name = "phone" value = "{{old('phone')}}" class="form-control" placeholder="Phone" aria-label="Phone" aria-describedby="basic-addon1">
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
@ -316,7 +327,7 @@
<select class="form-select" id="inputGroupSelect01" name = "service_id"> <select class="form-select" id="inputGroupSelect01" name = "service_id">
<option hidden>Choose Services</option> <option hidden>Choose Services</option>
@foreach($services as $service) @foreach($services as $service)
<option value="{{$service->id}}"> <option value="{{$service->id}}" {{old('service_id') == $service->id ? 'selected' : ''}}>
{{$service->name}} {{$service->name}}
</option> </option>
@endforeach @endforeach
@ -330,7 +341,7 @@
<img src="{{url('frontend/icons/Chat_plus_light.svg')}}" alt=""> <img src="{{url('frontend/icons/Chat_plus_light.svg')}}" alt="">
</label> </label>
</div> </div>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Message" name="message"></textarea> <textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Message" name="message">{{old('message')}}</textarea>
</div> </div>
</div> </div>
<div class="col-md-12"> <div class="col-md-12">

Loading…
Cancel
Save