@extends('layouts.main') @section('content')
@if($products)
@include('partials.sigma.experience.sidebar')
@if(isset($products->status)) @if($products->status == 1)

{{$pagename}}

@if(isset($products->data)) @foreach($products->data as $product)

{{str_limit($product->product, 20)}}

@if(Auth::check()) @if(Auth::user()->currency->is_currency_fixed == '1')
₦{{transform_product_price($product->price, 1) }}
@else
{{ transform_product_price($product->price, Auth::user()->currency->rate ) }} {{Auth::user()->currency->currency }}
@endif @endif
@endforeach
@endif
@endif @endif
@else

No Products available.

@endif
@endsection @push('script') @endpush