@extends('frontend.layout.master') @section('title', $pageTitle) @section('content')
@if($products->isEmpty())

No products found. Try searching for something else.

@else
@foreach($products as $product) {{-- Loop through all products --}}
{{-- Main product image --}}
{{-- Gallery images tab contents --}} @foreach($galleryimg->where('product_id', $product->id) as $index => $image) @endforeach
{{-- Main image thumbnail --}} {{-- Gallery images thumbnails --}} @foreach($galleryimg->where('product_id', $product->id) as $index => $image) @endforeach

{{$product->product_name}}

Product code : {{$product->product_code}}

Availability : {{$product->product_quantity}}

Description : {!! Str::words($product->product_dec, 20, '...') !!}


Price

₹ {{$product->product_saleprice}}

₹ {{$product->product_orgprice}}


@csrf
- +

@endforeach

@endif
@endsection