Profile Email{{ $customer->email }} Phone{{ $customer->phone ?: 'Not added' }} Status{{ $customer->is_active ? 'Active' : 'Inactive' }}
Cart Items @forelse ($customer->cartItems as $item) {{ $item->product->name }} x{{ $item->quantity }} @empty No cart items. @endforelse
{{ $favorite->product->name }} {{ \App\Models\SiteSetting::formatPrice($favorite->product->sellingPrice()) }}