File: /var/www/ipsremont-demo/storage/framework/views/2c498e27b9355b48a0b37ff5f2b2bfd41ca02353.php
<?php
/** @var Service $service */
use App\Models\Service\Service;
if (!$service->display) {
$class = 'label-light-primary';
$text = 'Закрыт';
} elseif ($service->last_action_at->gt(now()->subDays(10))) {
$class = 'label-light-success';
$text = 'Активен';
} elseif ($service->last_action_at->gt(now()->subDays(20))) {
$class = 'label-light-warning';
$text = 'Не активен';
} else {
$class = 'label-light-danger';
$text = 'Связаться';
}
?>
<span class="label label-inline <?php echo e($class); ?> font-weight-bold"><?php echo $text; ?></span>
<?php /**PATH /var/www/ipsremont-demo/resources/views/services/_service_status_in_list.blade.php ENDPATH**/ ?>