@extends('layouts.front_end') @section('title', 'Product Search') @section('content')

Product Search Result

@if($data['products']) @foreach($data['products'] as $product)
{{$product['name']}} {{$product['name']}} {{--
--}}
@if(strlen($product['name'])>50) {{ substr($product['name'], 0,49).'...' }} @else {{ $product['name'] }} @endif
@if($currencySymbol) {{ $currencySymbol->symbol }}{{ $product['special_price'] }} @else {{ $product['special_price'] }} @endif @if($currencySymbol) {{ $currencySymbol->symbol }}{{ $product['regular_price'] }} @else {{ $product['regular_price'] }} @endif
{{--
--}} @if($product['in_stock']=="Out of Stock") স্টক শেষ @else ক্রয় করুণ @endif @if($product['in_stock']=="Out of Stock") স্টক শেষ @else ক্রয় করুণ @endif
@endforeach @else
Op's there is no products
@endif
@endsection