Compare commits
	
		
			1 Commits 
		
	
	
	| Author | SHA1 | Date | 
|---|---|---|
| 
							
							
								 | 
						43c23ef217 | 3 years ago | 
				 4 changed files with 107 additions and 5 deletions
			
			
		@ -0,0 +1,57 @@ | 
				
			|||||||
 | 
					<?php | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace App\Http\Controllers; | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use Illuminate\Http\Request; | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class HomeController extends Controller | 
				
			||||||
 | 
					{ | 
				
			||||||
 | 
					   public function contact(Request $request){ | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // $contact = new Contact(); | 
				
			||||||
 | 
					    $subject = 'Contact Enquiry'; | 
				
			||||||
 | 
					    // $check = ''; | 
				
			||||||
 | 
					    // if(isset($request['firstname'])){ | 
				
			||||||
 | 
					    //  $subject = 'Quick 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']; | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // $contact->save(); | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // dispatch(function() use ($check,$subject, $contact) { | 
				
			||||||
 | 
					        \Mail::send('contact_mail', array( | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            'full_name' =>$request['fname'], | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            'email' =>$request['email'], | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            'phone' =>$request['mobile'], | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            'job_title' =>$request['job_title'], | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            'contact_message' =>$request['message'], | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            'subject' =>$subject  | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					           ), 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('info@extratechs.com.au', 'Extratech')->subject($subject); | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					           }); | 
				
			||||||
 | 
					        // }); | 
				
			||||||
 | 
					        // return redirect()->back()->with(['msg' => 'Successfully submitted.']); | 
				
			||||||
 | 
					        return redirect()->back()->with(['msg' => 'Thank you for your interest. We will get back to you soon.','status' =>'Ok'],200); | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   } | 
				
			||||||
 | 
					} | 
				
			||||||
@ -0,0 +1,27 @@ | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					<style> | 
				
			||||||
 | 
							.main-column{ | 
				
			||||||
 | 
								display:flex; | 
				
			||||||
 | 
								width:100%; | 
				
			||||||
 | 
							} | 
				
			||||||
 | 
							.column-one{ | 
				
			||||||
 | 
								width:50%; | 
				
			||||||
 | 
							} | 
				
			||||||
 | 
						</style> | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <h1>Contact Details</h1> | 
				
			||||||
 | 
					    <br /> | 
				
			||||||
 | 
					    <div class="main-column" style = "display:block; width:100%;"> | 
				
			||||||
 | 
					      <div class="column-one" style = "display:block; width:100%;"> | 
				
			||||||
 | 
					        <h3>Please, find out the contact details</h3> | 
				
			||||||
 | 
					        <b>Full Name:</b> {{ $full_name }}<br /><br /> | 
				
			||||||
 | 
					        <b>Email:</b> {{ $email }}<br /><br /> | 
				
			||||||
 | 
					        <b>Phone:</b> {{$phone}}<br /><br /> | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <b>Job Title:</b> {{$job_title}}<br /><br /> | 
				
			||||||
 | 
					       | 
				
			||||||
 | 
					        <b>Message:</b> {{ $contact_message }}<br /><br /> | 
				
			||||||
 | 
					  | 
				
			||||||
 | 
					      </div> | 
				
			||||||
 | 
					    </div> | 
				
			||||||
 | 
					
 | 
				
			||||||
					Loading…
					
					
				
		Reference in new issue