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/csb.komma.pro/resources/views/components/contactPerson.blade.php
<div class="o-contact__person">
    @if(!empty($imagePath))
        <img class="u-rounded  u-spacing-mb1" width="120" height="120" src="{{$imagePath}}" alt="Image" />
    @endif
    @if(!empty($name))
        <h5 class="u-color-neutral--800">{{$name}}</h5>
    @endif
    @if(!empty($function))
        <p>{{$function}}</p>
    @endif
    @if(!empty($phoneNumber) & !empty($phoneNumberDisplay))
        <a class="o-contact__person-phone" href="tel:{{$phoneNumber}}">{{$phoneNumberDisplay}}</a>
    @endif
    @include('components.textButton', [
        'modifiers' => ['small', 'icon'],
        'textButtonText' => 'E-mail sturen',
        'textButtonLink' => 'mailto:'.$mailAddress,
    ])
</div>