@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{$user }},
@endcomponent
@component('emails.common.p')
Empower would like to confirm your meeting.
@endcomponent
@component('emails.common.ul')
Title: {{ $meeting->title }}
Date: {{ date('d M Y', strtotime($meeting->date)) }}
Start Time: {{ date('H:i', strtotime($meeting->start_time)) }}
End Time: {{ date('H:i', strtotime($meeting->end_time)) }}
Type: {{ ucfirst($meeting->type) }}
Meeting Type: {{ ($meeting->meeting_type == 'Skype') ? 'Virtual' : $meeting->meeting_type }}
Meeting Information: {{ $meeting->location }}
@if($meeting->notes)
Notes: {{ $meeting->notes }}
@endif
@endcomponent
@endcomponent
@component('emails.common.td')
@component('emails.common.secondary_footer')
@endcomponent
@endcomponent
@endcomponent
@include('emails.common.footer')