File: D:/HostingSpaces/SBogers10/tandartsmaas.komma.pro/app/views/emails/signUp/data.blade.php
<?php
$style = unserialize($style);
$colors = new stdClass();
$colors->text = '#52405B';
$font = new stdClass();
$font->default = 'font-family: Helvetica, Arial, sans-serif; font-size: 15px; font-weight: 400; line-height: 1.4;';
$font->title = 'font-family: Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 700; line-height: 1.4;';
$font->button = 'font-family: Helvetica, Arial, sans-serif; font-size: 15px; font-weight: 700; line-height: 1.4;';
?>
<table cellpadding="0" cellspacing="0" border="0">
<h2 style="{{$font->title}} color: {{ $colors->text }};">Gegegevens</h2>
<?php
if(isset($gender))
{
if($gender == 'male') $gender = 'Man';
if($gender == 'female') $gender = 'Vrouw';
}
?>
<tr>
<td colspan="2" style="{{$font->default}} color: {{ $colors->text }}; padding-bottom: 20px"><strong>Geslacht</strong>:<br />{{ $gender }}</td>
</tr>
<tr>
<td colspan="2" style="{{$font->default}} color: {{ $colors->text }};padding-bottom: 20px"><strong>Naam</strong>:<br />{{ $name }}</td>
</tr>
<tr>
<td colspan="2" style="{{$font->default}} color: {{ $colors->text }};padding-bottom: 20px"><strong>E-mail</strong>:<br />{{ $email }}</td>
</tr>
<tr>
<td colspan="2" style="{{$font->default}} color: {{ $colors->text }};padding-bottom: 20px"><strong>BSN</strong>:<br />{{ $bsn }}</td>
</tr>
@if( ! empty($phone))
<tr>
<td colspan="2" style="{{$font->default}} color: {{ $colors->text }};padding-bottom: 20px"><strong>Telefoon</strong>:<br />{{ $phone }}</td>
</tr>
@endif
</table>