@extends('master.front') @section('title') {{ __('Supermatch Product') }} @endsection @section('meta') @endsection @section('content')

{{ __('Supermatch') }}

@if ($campaign_items->count() > 0) @foreach ($campaign_items as $key_item => $item)
@if ($item->is_type) @foreach (json_decode($item->is_type) as $val) @if ($val == 'new') @endif @if ($val == 'feature') @endif @if ($val == 'top') @endif @if ($val == 'best') @endif @if ($val == 'flash_deal') @endif @endforeach @else @endif @if($item->sale_qty >= $setting->sale_qty && $sale_qty_status == true) @endif @if ($item->is_hot == 1 && $view_qty_status == true) @endif @if($item->view_qty >= $setting->view_qty && $view_qty_status == true) @endif @if (!$item->is_stock() || $item->status == 0 ) @endif @if ($item->discount_price != $item->previous_price) @endif
{{ Str::limit($item->name, 35) }}
{{ PriceHelper::grandCurrencyPrice($item) }}
@if ($item->previous_price != 0)
{{ PriceHelper::grandCurrencyPrice($item) }} {{ PriceHelper::setPreviousPrice($item->previous_price) }}
@endif
@if ($item->is_stock() and $item->status == 1) @else {{ __('Details') }} @endif
@endforeach @else

{{ __('No Product Found') }}

@endif
@endsection