|
|
PID: {{ $product->id }}
Date : {{ $product->created_at->format('Y-M-d') }}
SKU: {{ $product->sku }}
Barcode : {{ $product->barcode }}
|
{{-- $product->images[0]->image --}}
|
{{ $product->name }}
Condition: {{ $product->condition }}
Weight: {{ $product->weight }}
Payment Method: {{ $product->payment_method }}
LXBXH: {{ $product->lbh }}
|
@if (count($productTypes) >= 1)
{{ isset($product->productTypeValueOne) ? $product->productTypeValueOne->type_value : '' }} |
@endif
@if (count($productTypes) === 2)
{{ isset($product->productTypeValueTwo) ? $product->productTypeValueTwo->type_value : '' }} |
@endif
${{ number_format($product->rrp, 2) }}
|
${{ number_format($product->price_unit, 2) }}
{{ isset($product->discount) ? "({$product->discount} % off)" : '' }}
|
{{ $product->stock }}
|
{{ @$product->seller->biz_name }}
{{ @$product->seller->biz_phone }}
|
@if ($product->status === 1) @else @endif
|
@endforeach