@include('emails.common.header') @component('emails.common.table') @component('emails.common.p') Hello Recruiter Team, @endcomponent @component('emails.common.p') Please see your interview schedule below. @endcomponent @foreach($jobs as $key => $value) @if(count($value->jobInterview) > 0) @component('emails.common.p') {{ $value->company->name }}
Position: {{ $value->title }}
Interviewer: {{ $value->contact->first_name }} {{ $value->contact->last_name }}
@endcomponent @foreach($value->jobInterview as $interview) @component('emails.common.p') Candidate: {{ $interview->user->first_name }} {{ $interview->user->last_name }}
Interview Type: {{ ($interview->type == 'Skype') ? 'Virtual' : $interview->type }}
Time: {{ $interview->time }}
@endcomponent @endforeach @endif @endforeach @component('emails.common.td') @component('emails.common.secondary_footer') noQuote @endcomponent @endcomponent @endcomponent @include('emails.common.footer')