| {{ __("Product Name") }} | @foreach($products as $product)
{{ $product['item']->name }} |
@endforeach
| {{ __("Price") }} | @foreach($products as $product){{ App\Models\Product::find($product['item']['id'])->showPrice() }} | @endforeach
| {{ __("Rating") }} | @foreach($products as $product)@endforeach |
| {{ __("Description") }} | @foreach($products as $product)
{{ strip_tags($product['item']->details) }} |
@endforeach
| {{ __("Add To Cart") }} | @foreach($products as $product)@if($product['item']['product_type'] == "affiliate") {{ __("Buy Now") }} @else {{ __("Add To Cart") }} {{ __("Buy Now") }} @endif | @endforeach
| {{ __("Remove") }} | @foreach($products as $product)@endforeach |