@extends('layouts.main') @section('style') @endsection @section('content') @include('pages.home.modal')
@if($is_mobile && isset($categories)) @else

Beranda

@endif
@include('components.message')
@if(isset($categories) && !$is_mobile) @endif
@if(isset($products) && count($products)>0)
@foreach($products as $k => $v)
Card image cap

@if($is_mobile) {{ \Illuminate\Support\Str::limit($v->name ?? '-', 30, '...') }} @else {{ \Illuminate\Support\Str::limit($v->name ?? '-', 30, '...') }} @endif

@if($v->stock==0)
Stok Habis
@endif
Harga   Min.Qty
{{ number_format($v->sell_price) }}   {{ number_format($v->minimum_order) }}

@if($v->shipping_method=="INTERNAL") {{ \Illuminate\Support\Str::limit($v->shipping_coverage ?? '-', 15, '...') }} @else Seluruh wilayah @endif
@endforeach
@else
Maaf data tidak ditemukan

Supplier belum menambahkan data pada kategori ini.

@endif
@endsection @section('script') @include('pages.home.script') @endsection