freescout/freescout-dist/resources/views/partials/person_photo.blade.php

5 lines
441 B
PHP
Raw Normal View History

2023-12-22 19:40:32 +00:00
@if (!empty($person))
@if (!empty($person->role))
@if ($person->photo_url)
<img class="person-photo" src="{{ $person->getPhotoUrl() }}" />@else
<i class="person-photo person-photo-auto" data-initial="{{ strtoupper(mb_substr($person->first_name, 0, 1)) }}{{ strtoupper(mb_substr($person->last_name, 0, 1)) }}"></i>@endif{{ '' }}@else<img class="person-photo" src="{{ $person->getPhotoUrl() }}" alt="">@endif{{ '' }}@endif