<!DOCTYPE html>
<html lang="en-US">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    
</head>
<body>

	<div>
		<?php
			$appointment = app('App\\Repositories\\AppointmentRepository')->getById($appointment_id);
			
			$resume=app('App\\Repositories\\ResumeRepository')->getByUserId($appointment->to_user);
		?>
		
		<p><b>New Meeting Invitation with <a href="{{$resume->present()->url()}}">{{$fullname}}</a></b></p>
		
		<p>Hello {{$user_name}}, <br/><br/>
		
		 You are invited for a meeting with <a href="{{$resume->present()->url()}}">{{$fullname}}</a><br><br>
            
        <strong>Date: </strong> {{date("j F, Y",strtotime($appointment->appointment_date))}}  <br>
            
        <strong>Time: </strong> {{$appointment->master_start_time}} to {{$appointment->master_end_time}} <br>
        
        <strong>Meeting Timezone: </strong> {{$appointment->master_timezone}}<br><br>
		 
        <strong>Meeting Title:</strong> {{nl2br($appointment->description)}} <br/><br/>	
        
         @if($appointment->location)
         	
            <?php
				$apLocation=$appointment->location;
				
				if($appointment->idmeet_meeting==1){
					if($toUid!=0){
						$apLocation=$apLocation."?lgid=".base64_encode($toUid);
					}else{
						$apLocation=$apLocation."?emailid=".$toEmail;
						$apLocation=trim($apLocation);
					}
				}
			?>
         
           	<strong>Meeting location:</strong><p style="color:#ed1b23;">{{$apLocation}}</p><br/>
            
            @if($appointment->zoom_meeting_id)
            	<strong>Meeting Id:</strong> {{$appointment->zoom_meeting_id}}<br/><br/>
                
                <strong>Password:</strong> {{$appointment->zoom_password}}<br/><br/>
            @endif
         @endif
           	
		To save the meeting in your calendar,<a href="{{URL('icsfileuser/download')}}/{{$appointment->id}}" style="color:#ed1b23; text-decoration:none;">click here</a> to download.
		</p>
				
		<p>Best Wishes,<br/>
		   idhubs Support Team<br/>
		   <a href="https://twitter.com/go4idhubs">https://twitter.com/go4idhubs</a><br/>      
			<a href="https://www.instagram.com/go4idhubs">https://www.instagram.com/go4idhubs</a>
		</p>
	</div>
</body>
</html>