@extends('mail.layout') @section('logo') {!! $logo !!} @endsection @section('content')

Hello {{ $booking->first_name }},

This is a reminder about your upcoming meeting.

UPCOMING MEETING REMINDER

{{$meeting->title}}

@if($minutesBefore == 15) Your meeting starts in 15 minutes @elseif($minutesBefore == 30) Your meeting starts in 30 minutes @elseif($minutesBefore == 60) Your meeting starts in 1 hour @elseif($minutesBefore == 1440) Your meeting is scheduled for tomorrow @else Your meeting is coming up @endif


@if($meeting->duration) @endif
Host: {{ $meeting->host?->name }}
Date: {{ \Carbon\Carbon::parse($booking->date)->format('l, d M Y') }}
Time: {{ $booking->time_slot_start }} - {{$booking->time_slot_end }} @if(!empty($booking->timezone)){{ $booking->timezone }})@endif
Duration: {{ \Modules\Meeting\Enums\MeetingDurationEnum::from($meeting->duration)->label() }} minutes

Meeting Details

@if($booking->meeting_link) @endif @if($meeting->location) @endif
Meeting Type: {{ \Modules\Meeting\Enums\MeetingMethodEnum::from($meeting->method)->label() }}
Meeting Link: Join Meeting
Location: {{ $meeting->location }}
@if($meeting->description)

Meeting Description

{{ $meeting->description }}

@endif
@endsection