@if(empty($ms_products)) @else
Product List
@foreach($ms_products as $k => $v)
@csrf
Card image cap
@if($is_mobile)

{{ \Illuminate\Support\Str::limit($v->products->name ?? '-', 15, '...') }}

@else

{{ \Illuminate\Support\Str::limit($v->products->name ?? '-', 15, '...') }}

@endif @if($v->products->stock==0)
Stok Habis
@endif
Harga   Margin
{{ number_format($v->products->sell_price) }}   {{ number_format($v->margin_persen ?? 0, 2) }} %
@endforeach
@endif
Live Preview

{{ $website->new_arrivals_title ?? 'New Arrivals' }}

{{ $website->new_arrivals_subtitle ?? 'Shop Now' }}

{{ $website->special_offers_title ?? 'Special Offers' }}

{{ $website->special_offers_subtitle ?? 'View More' }}

{{ $website->title ?? 'Your Title Here' }}

{{ $website->sub_title ?? 'Your Description Here' }}

{{ $website->title ?? 'Your Title Here' }}

{{ $website->sub_title ?? 'Your Description Here' }}

{{ $website->featured_products_title ?? 'Featured Products' }}

@if(isset($website_product) && count($website_product)>0) @foreach($website_product as $k => $v)
{{ $v->products->name ?? '-' }}

Rp. {{ number_format($v->price) }}

@endforeach @else @for($i = 1; $i <= 4; $i++)
Product {{ $i }}

$99.99

@endfor @endif