Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/public_html/storage-old/framework/views/ |
<?php /*start desktop & telefon*/ ?>
<div class="row hide-tab">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-5">
<?php foreach($pages as $page): ?>
<?php
$title = explode(' ',$page->title);
$title_first_section = $title[0];
$title_second_section = '';
foreach($title as $key=>$section){
if ($key==0) continue;
$title_second_section .= $section." ";
}
$title_second_section = strip_tags($title_second_section);
?>
<div class="info-massage">
<div class="title"><?php echo e($title_first_section); ?> <span class="black-text"><?php echo e($title_second_section); ?></span></div>
<div class="text-description">
<?php echo $page->excerpt; ?>
</div>
<a href="<?php echo e(($page->link!="") ? $page->link : $page->url); ?>" class="btn-view-therapist"><?php echo e($page->link_title); ?></a>
</div>
<?php endforeach; ?>
</div>
<!-- <div class="col-xs-12 col-sm-6 col-md-6 col-lg-7">
<img class="img-responsive pull-right hand-pic" src="<?php echo e(asset('/themes/frontend_new/assets/img/hand-mobile.png')); ?>"/>
</div> -->
</div>
<?php /*end desktop & telefon*/ ?>
<?php /*start tableta*/ ?>
<div class="hide-desktop hide-tel">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-7">
<?php foreach($pages as $page): ?>
<?php
$title = explode(' ',$page->title);
$title_first_section = $title[0];
$title_second_section = '';
foreach($title as $key=>$section){
if ($key==0) continue;
$title_second_section .= $section." ";
}
$title_second_section = strip_tags($title_second_section);
?>
<div class="info-massage">
<div class="title"><?php echo e($title_first_section); ?> <span class="black-text"><?php echo e($title_second_section); ?></span></div>
<div class="text-description">
<?php echo $page->excerpt; ?>
</div>
<a href="<?php echo e(($page->link!="") ? $page->link : $page->url); ?>" class="btn-view-therapist"><?php echo e($page->link_title); ?></a>
</div>
<?php endforeach; ?>
</div>
<!-- <div class="col-xs-12 col-sm-6 col-md-6 col-lg-7">
<img class="img-responsive pull-right hand-pic" src="<?php echo e(asset('/themes/frontend_new/assets/img/hand-mobile.png')); ?>"/>
</div> -->
</div>
</div>
<?php /*end tableta*/ ?>