@if (str_contains($permissions->export_column, 'id'))
| {{ $key+1 }} |
@endif
@if (str_contains($permissions->export_column, 'name'))
{{@$comboProduct->name}} |
@endif
@if (str_contains($permissions->export_column, 'model'))
{{ @$productSkus->product->model->name }} |
@endif
@if (str_contains($permissions->export_column, 'price'))
{{ single_price($comboProduct->price) }} |
@endif
@if (str_contains($permissions->export_column, 'regular_price'))
{{ single_price($comboProduct->total_regular_price) }} |
@endif
@if (str_contains($permissions->export_column, 'total_product'))
{{ $comboProduct->combo_products_count ?? $comboProduct->combo_products()->count() }} {{ __('product.pcs') }} |
@endif
@if (str_contains($permissions->export_column, 'total_product'))
@if ($comboProduct->status == 0)
{{ __('product.Close') }}
@else
{{ __('product.Open') }}
@endif
|
@endif
@else
| {{ $key+1 }} |
{{$comboProduct->name}} |
{{single_price($comboProduct->price)}} |
{{single_price($comboProduct->total_regular_price)}} |
{{ $comboProduct->combo_products_count ?? $comboProduct->combo_products()->count() }} {{ __('product.pcs') }} |
@if ($comboProduct->status == 0)
{{ __('product.Close') }}
@else
{{ __('product.Open') }}
@endif
|
@endif
@endforeach