@extends('layout.basic_front') @section("content")

{{trans('products.title')}}

{{-- --}}
@if(isset($searchkeyword))

{{trans("products.search_title")}} : {{$searchkeyword}}

@endif @foreach($products as $product) @if(isset($productimgs[$product->id])) @if($count %2 == 1)
@endif
@if(!empty($productimgs)) {{ HTML::image($productimgs[$product->id][0],"",['class'=>'image', 'id'=>'priview_slide_img', 'style'=>'height: -webkit-fill-available']) }} @else GENGHUNG @endif
@if(Session::get('set_lang')=='en')

{{$product->title_en}}

@else

{{$product->title_tw}}

@endif
@if($product->sequence < 3)
TOP {{$product->sequesce +1 }}
@endif
@if($count %2 == 0)
@endif @endif @endforeach
@stop