@if($orivar->variantimages['main_image'] != '' && file_exists(public_path().'/variantimages/thumbnails/'.$orivar->variantimages['main_image']))
@endif
|
{{ucfirst($row->product->name)}}
( {{ variantname($row->variant) }} ) {{ __('Sold By') }} : {{ucfirst($row->product->store->name ?? '')}} @foreach($row->variant->main_attr_value as $key=> $orivar) @php $getattrname = App\ProductAttributes::where('id',$key)->first()->attr_name; $getvarvalue = App\ProductValues::where('id',$orivar)->first(); @endphp @php $k = '_'; @endphp @if (strpos($getattrname, $k) == false) {{ $getattrname }}: @else {{str_replace('_', ' ', $getattrname)}}: @endif @if(isset($getvarvalue) && strcasecmp($getvarvalue->unit_value, $getvarvalue->values) != 0 && $getvarvalue->unit_value != null) @if($getvarvalue->proattr->attr_name == "Color" || $getvarvalue->proattr->attr_name == "Colour" || $getvarvalue->proattr->attr_name == "color" || $getvarvalue->proattr->attr_name == "colour"){{ __("Congrats ! You can earn cashback in your wallet") }} {{ $row->product->cashback_settings->discount_type }} @if($row->product->cashback_settings->cashback_type == 'fix') {{ price_format($row->product->cashback_settings->discount * $conversion_rate) }} @else {{ $row->product->cashback_settings->discount.'%' }} @endif @endif |
|
@if($row->semi_total == 0)
{{price_format($row->price_total*$conversion_rate,2)}}
@else
{{price_format($row->semi_total*$conversion_rate,2)}}
|
@if($row->simple_product->thumbnail != '' && file_exists(public_path().'/images/simple_products/'.$row->simple_product->thumbnail))
@endif
|
{{ ucfirst($row->simple_product->product_name) }}
{{__('Sold By')}} : {{ucfirst($row->simple_product->store->name)}} @if(isset($row->simple_product->cashback_settings) && $row->simple_product->cashback_settings->enable == 1){{ __("Congrats ! You can earn cashback in your wallet") }} {{ $row->simple_product->cashback_settings->discount_type }} @if($row->simple_product->cashback_settings->cashback_type == 'fix') {{ price_format( $row->simple_product->cashback_settings->discount * $conversion_rate) }} @else {{ $row->simple_product->cashback_settings->discount.'%' }} @endif @endif |
|
@if($row->semi_total == 0)
{{price_format($row->price_total*$conversion_rate)}}
@else
{{price_format($row->semi_total*$conversion_rate)}}
|