@if (is_null($products) || count($products) == 0)
No Result Found
@else @foreach ($products as $product) @if ($product->status)
@if (count($product->images))
@else
@endif
{{ $product->name }}
{{ $product->weight }}
{{ $product->weight_type }}
@if (Auth::guard('customer')->user())
$ {{ $product->price }}
@else
N/A
@endif
@if ($product->inventory->inventory > 0)
Cart
@else
@endif
@endif @endforeach @endif