@extends('layouts.front-layout') @section('title') Product @endsection @section('content')

Products

{{-- Markup Brushes Product --}} @if (isset($markupBrushes))

{{ $markupBrushes->product_name ?? '' }}

{!! \Illuminate\Support\Str::limit(strip_tags($markupBrushes->description), 70, '...') !!}

@if ($markupBrushes->product_price) @if ($markupBrushes->product_discount) $ {{ $markupBrushes->product_price }} $ {{ $markupBrushes->product_discount }} @else $ {{ $markupBrushes->product_price }} @endif @else Price not available @endif @guest  Add to Wishlist @else @endguest
@endif {{-- Peaches Cream Concealer Product --}} @if (isset($peachesCreamConcealer)) @endif @if (isset($imperceptibleSettingPowder)) @endif {{-- No Product Available --}} @if (!isset($markupBrushes) && !isset($peachesCreamConcealer) && !isset($imperceptibleSettingPowder))

No Products Available

@endif
@endsection