@extends('layouts.master') @section('content') @include('components.breadcum')
@forelse ($products as $product)
shop
@if (@$settings->enable_cart == 1) @else CLICK TO ORDER @endif
{{ productType($product->product_type) }}
{{ $product->name }}
@if (ifProductHasDiscount($product)) {{ formatAmount($product->price, $settings) }}

{{ formatAmount($product->offer_price, $settings) }}

@else

{{ formatAmount($product->price, $settings) }}

@endif
@empty
No products available
@endforelse
    @forelse ($products as $product)
  • @if (ifProductHasDiscount($product)) {{ formatAmount($product->price, $settings) }}

    {{ formatAmount($product->offer_price, $settings) }}

    @else

    {{ formatAmount($product->price, $settings) }}

    @endif
    {{ $product->name }}

    {{ $product->short_description }}

    @if (@$settings->enable_cart == 1) @else CLICK TO ORDER @endif
  • @empty
    No products available
    @endforelse
{{-- --}} {{ $products->links('vendor.pagination.products') }}
@endsection