@extends('frontend.layouts.template') @section('stylesheet') @endsection @section('content')
@if($products) @foreach( $products as $product ) @php $subject = json_decode( $product->subject ) @endphp
@if ($product->label == 'SALE') Sale @endif @if ($product->label == 'HOT') Hot @endif @if ($product->label == 'NEW') New @endif @if( $product->product_images ) {{ objectName( $product->subject ) }}_1 @endif
{{ objectName( $product->subject ) }}
฿{{ nb($product->price,2) }} @if( $product->discount > 0) ฿{{ nb($product->discount,2) }}
{{ nb(discount_of( $product->price,$product->discount),2) }}% Off
@endif
({{ review($product->id) }})
{!! objectName( $product->short_description) !!}
@endforeach @endif
@if ($products->lastPage() > 1)
{!! pagination($products) !!} {{-- --}}
@endif
@include('frontend.products.inc-category-sidebar')
@endsection @section('after_javascript') @endsection @section('javascript') @endsection