<!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);
		?>
		
		<p><b>New Meeting Booked</b></p>
		
		<p>Hello {{$fullname}}, <br/><br/>
		
			New meeting has been booked by {{$user_name}} on <strong>{{date("Y F j", strtotime($appointment->appointment_date))}} {{$appointment->master_start_time}}</strong> to <strong>{{date("Y F j", strtotime($appointment->appointment_date))}} {{$appointment->master_end_time}}</strong>  <br/><br/>
		
			Name: {{$user_name}} <br/><br/>
			
			Email: {{$user_email}} <br/><br/>
			
			Description: {{nl2br($appointment->description)}} <br/><br/>
			
            @if($appointment->location)
           		Meeting location: {{$appointment->location}}<br/><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
         
			<a href="{{URL('icsfileowner/download')}}/{{$appointment->id}}" style="color:#ed1b23; text-decoration:none;">Click here</a> to download the meeting.
		</p>
		
		
		<br/><br/>
		
		<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>