@extends('layouts.app') @section('title', $pageTitle . ' - Saba Remedies') @section('content')

{{ $pageTitle }}

Showing {{ $products->total() }} Formulations
Enter quantity and click Buy Now to add directly to your cart.
@forelse($products as $index => $prod) @php $sNo = ($products->currentPage() - 1) * $products->perPage() + $index + 1; $inCartQty = $userCartItems[$prod->id] ?? null; @endphp @csrf @empty @endforelse
S.No. Product Formulation Price (₹) Quantity Subtotal Action
{{ $sNo }}.
{{ $prod->prod_name }}
{{ $prod->prod_name }} @if($prod->prod_code) CODE: {{ $prod->prod_code }} @endif
₹{{ $prod->prod_price }}
₹{{ (float)$prod->prod_price * ($inCartQty ?? 1) }} @if($inCartQty) @else @endif
No medicines found in this category matching your search.
Go to Cart & Checkout →
{{ $products->links() }}
@endsection @push('scripts') @endpush