@extends('layouts.main') @section('content')
@include('partials.sigma.catalogue.sidebar')
@if(!$products)

No Products available.

@endif @if(isset($products)) @if($products)
@if(isset($products)) @foreach($products as $product)

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

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

No Products available

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