|
PI Application(s) : {{$data['application_number'] ?? 0}}
|
|
A new member has submitted an application to join LabPair. The details are provided below:
|
|
Date Submitted : {{$data['application_date'] ?? date('m-d-Y')}}
|
|
First Name : {{$data['name'] ?? ''}}
|
|
Last Name : {{$data['last_name'] ?? ''}}
|
|
Email : {{$data['email'] ?? ''}}
|
|
Research Institution : {{$data['research_name'] ?? ''}}
|
|
Entity Type : {{$data['entity_type'] ?? ''}}
|
|
Research Institution City : {{$data['research_city'] ?? ''}}
|
|
Research Institution State : {{$data['research_state'] ?? ''}}
|
|
US Phone Number : {{$data['phone'] ?? ''}}
|
|
International Phone Number : {{$data['international_phone'] ?? ''}}
|
|
What is your position : {{$data['position'] ?? ''}}
|
|
Additional notes or question : {{$data['notes'] ?? ''}}
|
|
Field(s) of research :
|
@foreach($data['researchs'] AS $key => $researchs)
|
{{$key ?? ''}}
@foreach($researchs AS $key => $research)
> {{$research}}
@endforeach
|
@endforeach
|
|
@include('email.email-footer-without-more-content')