File: /var/www/ipsremont-demo/storage/framework/views/ac02625301b3b071e90998d8d3e6b74ea80bf3e1.php
<?php if(!empty($serviceList)): ?>
<div class="row">
<?php $__currentLoopData = $serviceList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $service): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-lg-4 col-sm-6">
<div class="card card-custom mb-8">
<div class="card-header h-auto py-4">
<div class="card-title">
<h3 class="card-label"><?php echo e($service->name); ?><span class="d-block text-muted pt-2 font-size-sm"><?php echo e($service->user->name); ?></span></h3>
</div>
</div>
<div class="card-body py-4">
<div class="d-flex align-items-center justify-content-between mb-2">
<span class="font-weight-bold mr-2"><?php echo app('translator')->get($service->user->getLabel('email')); ?>:</span>
<a href="mailto:<?php echo e($service->user->email); ?>" class="text-hover-primary"><?php echo e($service->user->email); ?></a>
</div>
<?php if($service->user->phone): ?>
<div class="d-flex align-items-center justify-content-between mb-2">
<span class="font-weight-bold mr-2"><?php echo app('translator')->get($service->user->getLabel('phone')); ?>:</span>
<?php echo e($service->user->phone); ?>
</div>
<?php endif; ?>
<?php if($service->user->additional_phone): ?>
<div class="d-flex align-items-center justify-content-between mb-2">
<span class="font-weight-bold mr-2"><?php echo app('translator')->get($service->user->getLabel('additional_phone')); ?>:</span>
<?php echo e($service->user->additional_phone); ?>
</div>
<?php endif; ?>
<?php if($service->user->branches->first()): ?>
<div class="d-flex align-items-center justify-content-between mb-8">
<span class="font-weight-bold mr-2"><?php echo app('translator')->get($service->user->branches->first()->getLabel('name')); ?>:</span>
<?php echo e($service->user->branches->first()->name ?? ''); ?>
</div>
<?php else: ?>
<div class=" mb-8"> </div>
<?php endif; ?>
<?php if($service->getAddress()->country): ?>
<div class="d-flex align-items-center justify-content-between mb-2">
<span class="font-weight-bold mr-2"><?php echo app('translator')->get($service->getLabel('country')); ?>:</span>
<?php echo e($service->getAddress()->country); ?>
</div>
<?php endif; ?>
<?php if($service->getAddress()->city): ?>
<div class="d-flex align-items-center justify-content-between mb-2">
<span class="font-weight-bold mr-2"><?php echo app('translator')->get($service->getLabel('city')); ?>:</span>
<?php echo e($service->getAddress()->city); ?>
</div>
<?php endif; ?>
<?php if($service->getAddress()->address): ?>
<div class="d-flex align-items-center justify-content-between mb-2">
<span class="font-weight-bold mr-2"><?php echo app('translator')->get($service->getLabel('physical_address')); ?>:</span>
<?php echo e($service->getAddress()->address); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<?php endif; ?>
<?php /**PATH /var/www/ipsremont-demo/resources/views/dashboard/_services.blade.php ENDPATH**/ ?>