38 lines
974 B
PHP

<div class="text-center mb-4">
<h2>Ваш участок обслуживания</h2>
<h2 class="font-weight-bold">{{$zone_name}}</h2>
</div>
@foreach($doctors as $doc)
<div class="card mb-4 shadow-sm" style="border-radius:14px;">
<div class="card-body">
<h4 class="mb-3">
{{$doc['post_name'] ?: 'Врач'}}
</h4>
<div class="d-flex align-items-start mb-3">
<div class="mr-3" style="font-size:52px;line-height:52px;">
<i class="fas fa-user-md text-primary"></i>
</div>
<div style="font-size:20px;">
<strong>{{$doc['name']}}</strong><br>
@if(!empty($doc['speciality_name']))
{{$doc['speciality_name']}}<br>
@endif
@if(!empty($doc['office']))
Кабинет: <strong>{{$doc['office']}}</strong><br>
@endif
</div>
</div>
<h5 class="mt-4 mb-3">Расписание приема</h5>
<div class="text-muted">Расписание не указано</div>
</div>
</div>
@endforeach