@if ($products) @guest
@endguest @auth
@endauth {{ $user->firstname . ' ' . $user->lastname }}

{{ $product_collection->title }}

{{ $product_collection->description }}
{{-- Categories --}} @if ($product_collection)
{{--

{{ $product_collection->title }}

--}} {{--
--}}
{{-- @foreach ($products as $product) @php if (!preg_match('/^https?:\/\//', $product['payment_link'])) { $product['payment_link'] = 'https://' . $product['payment_link']; } @endphp @endforeach --}} @foreach ($products as $product)
{{ $product->product_name }} {{-- Discount Badge --}} @if ($product->discount_percentage && $product->is_deal_active) {{ round($product->discount_percentage) }}% OFF @endif
@endforeach
@endif
@else
{{--

--}}

No product(s) found

@endif