<?php $__env->startSection('title'); ?> <?php echo $product->title_seo; ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('url'); ?> <?php echo e(url($product->alias)); ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('description'); ?> <?php echo $product->description_seo; ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('keywords'); ?> <?php echo $product->keyword_seo; ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('content'); ?>



<div id="container-content">



  <article id="content">



    <div class="container-fluid">



      <div class="row main-content">



        <div class="hidden-xs hidden-sm visibility-md col-md-3">



          <section id="sidebar">



            <div id="sidebar-container">



              <div id="side">



               <?php foreach($cate_product as $item): ?>



               <div class="block">



                <div class='secondnav'><h3><?php echo e($item->name); ?></h3><ul class="navigation">



                  <?php foreach($cate_product_sub as $sub): ?>



                  <?php if($item->id == $sub->parent_id): ?>



                  <li <?php if($cate_current->alias == $sub->alias): ?> class="active" <?php endif; ?> >



                    <a href="<?php echo e(url($sub->alias)); ?>"><?php echo e($sub->name); ?></a>



                  </li>



                  <?php endif; ?>



                  <?php endforeach; ?>



                </ul>



              </div>



              <?php endforeach; ?>







            </div>



          </div>



        </section>



      </div>



      <div class="col-xs-12 col-md-9">



        <section id="main-article">



          <article>



            <div id="breadcrumbs">



              <ul class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">



               <li><a itemprop="url" href="<?php echo e(url()); ?>"  <?php if(Session::get('lang') == 'vi'): ?> title="Trang chủ" <?php else: ?> title="Home" <?php endif; ?>><span itemprop="title" class="first"><?php if(Session::get('lang') == 'vi'): ?>Trang chủ <?php else: ?> <?php endif; ?></span></a></li>



               <?php if($cate_current->parent_id > 0 && $cate_root): ?>



               <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="<?php echo e(url(@$cate_root->alias)); ?>" title="<?php echo e(@$cate_root->name); ?>"><span itemprop="title"><?php echo e(@$cate_root->name); ?></span></a></li>



               <?php endif; ?>



               <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="<?php echo e(url(@$cate_current->alias)); ?>" title="<?php echo e(@$cate_current->name); ?>"><span itemprop="title"><?php echo e(@$cate_current->name); ?></span></a></li>







               <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title" class="last"><?php echo e($product->name); ?></span></li>



             </ul>



           </div>



           <article>



            <div itemscope itemtype="http://data-vocabulary.org/Product">



              <h2><span itemprop="name"><?php echo e($product->name); ?></span></h2>



              <div class="container-fluid">



                <div class="row">



                  <div class="prodimg col-xs-12"> <img class="center-block img-responsive" itemprop="image" alt="<?php echo e($product->name); ?>" src="<?php echo e(url($product->image)); ?>"/>



                    <div class="variants"> </div>



                  </div>



                  <div class="col-xs-12"> <?php echo e($product->description); ?></div>



                  <div class="proddesc col-xs-12">



                    <?php echo $product->content; ?>







                  </div>



                </div>



              </div>



            </div>



            <h2><span>Sản phẩm <?php echo e($cate_current->name); ?> khác</span></h2>



            <div class="row row-equal-height">







              <?php foreach($aOthers as $item): ?>



              <div class="prod col-xs-12 col-sm-6 col-md-4 col-equal">



                <div class="box">



                  <h4><a href="<?php echo e(url($item->alias)); ?>" title="<?php echo e($item->name); ?>"><?php echo e($item->name); ?></a></h4>



                  <div class="variants"> <a href="<?php echo e($item->alias); ?>" title="<?php echo e($item->name); ?>"> <img class="center-block" src="<?php echo e(url($item->image)); ?>" alt="<?php echo e($item->name); ?>"/> </a> </div>



                  <p> <?php if($item->size): ?><strong>Kích thước:</strong> <?php echo e($item->size); ?> <?php endif; ?><br/>



                    <?php echo e(Helper::getDescription($item->description,30)); ?></p>



                  </div>



                </div>



                <?php endforeach; ?>



              </div>



            </article>



          </div>



        </section>



      </div>



    </div>



  </div>



</article>



</div>



</div>







<?php $__env->stopSection(); ?>



<?php echo $__env->make('frontend.layout.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>