You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

330 lines
11 KiB

<?php
namespace App\Http\Controllers;
use App\Models\NewsAndUpdate;
use App\Models\Service;
use App\Models\AboutUs;
use App\Models\Accomodation;
use App\Models\Gallery;
use App\Models\Slider;
use App\Models\Contact;
use App\Models\Setting;
use App\Models\Applicant;
use App\Models\Subscription;
use App\Models\ApplicantService;
use App\Models\Testimonial;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Mail;
use App\Models\User;
use App\Models\Partner;
use PDF;
use Illuminate\Support\Str;
class HomeController extends Controller
{
public function runQueueJobs(){
Artisan::call('queue:listen');
}
public function index()
{
$about_us = AboutUs::where('status',1)->get();
$testimonials = Testimonial::where('status',1)->get();
$news_and_updates= NewsAndUpdate::where(['status'=>'1'])->orderBy('id','desc')->get();
$sliders = Slider::where('status',1)->get();
$services = Service::where('status',1)->orderByRaw('CONVERT(order_by, SIGNED) asc')->limit(9)->get();
$partners = Partner::where('status',1)->get();
$phone = Setting::where(['key' => 'phone','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();
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(){
$services = Service::where('status',1)->orderByRaw('CONVERT(order_by, SIGNED) asc')->get();
$service_limit = Service::where('status',1)->limit('8')->get();
return view('service', compact('services','service_limit'));
}
public function about(){
$about = AboutUs::where('status',1)->get();
return view('about',compact('about'));
}
public function ndis(){
return view('ndis-scheme');
}
public function contact(){
$services = Service::where('status',1)->get();
$phone = Setting::where(['key' => 'phone','status' => '1'])->first();
$email = Setting::where(['key' => 'email','status' => '1'])->first();
$address = Setting::where(['key' => 'address','status' => '1'])->first();
return view('contact',compact('phone','email','address','services'));
}
public function accommodation_details($id){
$accomodation = Accomodation::find($id);
return view('accommodation',compact('accomodation'));
}
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 = 'Quick Enquiry';
$check = '';
if(isset($request['check'])){
$subject = 'Contact Enquiry';
$check = '1';
}
$name = ($request['firstname'] != null) ? ($request['firstname'].' '.$request['lastname']) : $request['fullname'] ;
$contact->fullname = $name;
$contact->email = $request['email'];
$contact->phone = $request['phone'];
$contact->message = $request['message'];
$service = '';
if($request->service_id != null){
$service = Service::find($request['service_id'])->name ;
$contact->service_id = $request['service_id'];
}
$contact->save();
dispatch(function() use ($check,$subject, $contact,$service) {
\Mail::send('contact_mail', array(
'full_name' =>$contact['fullname'],
'email' =>$contact['email'],
'phone' =>$contact['phone'],
'contact_message' =>$contact['message'],
'subject' =>$subject ,
'check' => $check ?? '',
'service' => $service ?? ''
), function($message) use ($subject){
// $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback';
$message->subject($subject);
// $message->to('info@agilityhomecare.com.au', 'AgilityHomeCare')->subject($subject);
$message->to('mahesh@extratechs.com.au', 'Extratech')->subject($subject);
});
});
return redirect()->back()->with(['success' => 'Thank you for your interest. We will get back to you soon.']);
// return response()->json(['success' => 'Thank you for your interest. We will get back to you soon.','status' =>'Ok'],200);
}
public function save_career(Request $request){
$applicant = new Applicant();
$subject = 'Career Enquiry';
// $name = ($request['firstname'] != null) ? ($request['firstname'].' '.$request['lastname']) : $request['fullname'] ;
$name = $request['name'];
$applicant->name = $name;
$applicant->email = $request['email'];
$applicant->phone = $request['phone'];
$applicant->message = $request['message'];
$applicant->state = $request['state'];
$applicant->is_in_mailing_list = $request['is_in_mailing_list'];
if($request->hasFile('file')){
$extension = \request()->file('file')->getClientOriginalExtension();
$image_folder_type = array_search('applicant',config('custom.image_folders')); //for image saved in folder
$count = rand(100,999);
$out_put_path = User::save_image(\request('file'),$extension,$count,$image_folder_type);
is_array($out_put_path) ? $applicant->resume = $out_put_path[0] : $applicant->resume = $out_put_path;
}
if($applicant->save()){
$services = $request['career_areas'];
if(!is_null($services)){
foreach($services as $service){
$applicant_service = new ApplicantService();
$applicant_service->applicant_id = $applicant->id;
$applicant_service->service_id = $service;
$applicant_service->save();
}
}
}
dispatch(function() use ($subject, $applicant ,$services) {
\Mail::send('career_mail', array(
'name' => $applicant->first()->name,
'email' => $applicant->first()->email,
'phone' => $applicant->first()->phone,
'message_details' => $applicant->first()->message,
'state' => $applicant->first()->state,
'subject' =>$subject ,
'services' =>$services ,
), function($message) use ($subject,$applicant){
// $subject=($service!= '') ? 'Enquiry for '.$service : 'Contact/Feedback';
$message->subject($subject);
if($applicant->resume != ''){
$resume = url($applicant->resume);
$message->attach($resume);
}
// $message->to('info@agilityhomecare.com.au', 'AgilityHomeCare')->subject($subject);
$message->to('mahesh@extratechs.com.au', 'Extratech')->subject($subject);
// $message->cc('extratechweb@gmail.com', 'Extratech')->subject($subject);
});
});
return redirect()->back()->with(['msg' => 'Successfully submitted.']);
}
public function testimonials(){
$testimonials = Testimonial::where('status',1)->get();
return view('testimonial',compact('testimonials'));
}
public function blogs(){
$blogs = NewsAndUpdate::where('status',1)->get();
return view('blogs',compact('blogs'));
}
public function single(){
return view('service.single');
}
public function career(){
$career = Career::where(['status'=>1])->get();
return view('career',compact('career'));
}
public function enquiry(){
$services = Service::where('status',1)->orderByRaw('CONVERT(order_by, SIGNED) asc')->get();
return view('enquiry',compact('services'));
}
public function coordination(){
return view('coordination-form');
}
public function gallery(){
$gallery = Gallery::where(['status'=>1])->get();
return view('gallery',compact('gallery'));
}
public function working_dice(){
$services = Service::where('status',1)->get();
return view('working-dice',compact('services'));
}
public function getLogin()
{
if(Auth::check()){
return redirect('admin');
}
return view('admin.login');
}
public function postLogin()
{
$this->validate(request(),[
'email'=>'required',
'password'=>'required',
]);
if (Auth::attempt(['email'=>request('email'),'password'=>request('password')],request()->has('remember'))){
return redirect('admin');
}
// Session::flash('success','Invalid Credential!');
return redirect('login')->withErrors(['Invalid Credentials!']);
}
public function admin()
{
if(Auth::check()){
return view('admin.index');
}
}
public function getLogout()
{
Auth::logout();
return redirect('login');
}
public function subscribe(Request $request)
{
$email = $request->email;
$name = $request->name;
$subscription = new Subscription();
$subscription->email = $email;
$subscription->name = $name;
$subscription->save();
dispatch(function() use ($subscription) {
\Mail::send('subscribe_mail', array(
'email' =>$subscription['email'],
'name' =>$subscription['name'],
'subject' => 'Subscription Notice',
), function($message) use ($subscription){
$subject = 'Subscription Notice';
$message->subject('Subscription Notice');
// $message->to('info@agilityhomecare.com.au', 'Qualuty Allied Health')->subject($subject);
$message->to('mahesh@extratechs.com.au', 'Extratech')->subject($subject);
// $message->cc('info@extratechs.com.au', 'Extratech')->subject('Subscription Notice');
});
});
return response()->json(['success' => 'Successfully subscribed!','status' =>'Ok'],200);
}
public function single_blog($slug){
$blog = NewsAndUpdate::where(['slug' => $slug,'status' => 1])->orderby('id','asc')->first();
// $services = Service::where('status',1)->get();
return view('blog.single',compact('blog'));
}
public function refreshCaptcha()
{
return response()->json(['captcha_code'=> Str::random(5)]);
}
public function news(){
$news_and_updates = NewsAndUpdate::where('status',1)->get();
return view('news',compact('news_and_updates'));
}
}