@extends('layouts.app') @section('title', 'Search Results - Saba Remedies') @section('content')

{{ $pageTitle }}

Found {{ $products->total() + $sbProducts->count() }} matching medicines and formulations

@if($products->total() > 0 || $sbProducts->count() > 0)
@foreach($sbProducts as $sb)
@if($sb->prod_img1) {{ $sb->prod_name }} @else
@endif
@endforeach @foreach($products as $prod)
Classic Medicine

{{ $prod->prod_name }}

@if($prod->prod_code)
Code: {{ $prod->prod_code }}
@endif
₹{{ $prod->prod_price }} Buy Now
@endforeach
{{ $products->links() }}
@else

No matching products found

Try checking the spelling or searching with different keywords.

@endif
@endsection