@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)
Product
{{ \Illuminate\Support\Str::limit($v->name ?? '-', 30, '...') }}
{{ $v->categories->name ?? '' }}
Harga Min.Qty
Rp. {{ number_format($v->sell_price) }} {{ $v->minimum_order }} units
{{ $v->sellers->city_name ?? 'Kota Medan' }}
{{ $v->shipping_method=="INTERNAL" ? str_replace(',', ', ', $v->shipping_coverage) : 'Seluruh Wilayah Indonesia' }}
@endforeach
@else
Maaf data tidak ditemukan

Supplier belum menambahkan data pada kategori ini.

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