@extends('layouts.app') @section('title') {{ $keyword }} @endsection @section('content')

Searched for {{ $keyword }}

{{ $products->count() }} results found.

@foreach ($products as $product)
{{ $product->subcategory->name }}
{{ str_limit($product->name, 25, '...') }}
MYR @if ($product->discounted_price > 0){{ $product->discounted_price }}@else{{ $product->unit_price }}@endif @if ($product->discounted_price > 0) MYR {{ $product->unit_price }} @endif
@endforeach
@endsection