@extends('productcatalogue::layouts.master') @section('css') @php $themeColor = request()->get('c') ? base64_decode(request()->get('c')) : null; @endphp @php $quantity = request()->get('q') ? base64_decode(request()->get('q')) : null; $unit2= request()->get('u') ? base64_decode(request()->get('u')) : null; @endphp @if($themeColor) @endif @endsection @section('content')
@foreach ($products as $key => $product_category)

@foreach ($product_category as $product)
{{ $product['product']->name }}
| SKU: {{ $product->sub_sku }}
product image
{{-- $product['product']->alert_quantity && $product['product']->alert_quantity > 0 --}} @if ( $quantity)

الكمية المتوفرة: {{ number_format($product->variation_location_details->first()->qty_available,0 )}}

@endif @if ($product['product_variation']->variation_template_id != null)

{{ $product['product_variation']->name }} : ({{ $product->name }}) - {{ number_format($product->sell_price_inc_tax, 0) }} {{-- {{ number_format($product->variation_location_details->first()->qty_available, 0) }} --}}

@endif
@if ($loop->iteration % 4 == 0)
@endif @endforeach
@endforeach
محددات البحث
@csrf
0
1000
@endsection @section('javascript') @endsection