@extends('layouts.portal') @section('content')
🛒 Wellness & Therapy Resources

Shop & Digital Products

Explore curated mental health workbooks, daily self-care journals, and guided calming soundscapes.

@forelse($products as $product) @php $inCart = false; $cart = session()->get('cart'); if($cart && isset($cart[$product->id])) { $inCart = true; } @endphp @if(!$inCart)
{{ ($product->media_type ?? 'image') == 'video' ? '🎥 Video Item' : '🛍️ Shop Item' }}
@if(!empty($product->media) && ($product->media_type ?? 'image') != 'video') {{ $product->name ?? $product->title }} @endif @if(!empty($product->video)) @elseif(!empty($product->media) && ($product->media_type ?? 'image') == 'video') @endif

{{ $product->name ?? $product->title }}

{{ $product->description }}

₹{{ number_format($product->price ?? 499, 0) }}
🛒 Add to Cart
@endif @empty

No Products Currently Available

@endforelse
@endsection