HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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>