@extends('web.include.master') @section('content')

@if($lg=='en') Product search result @else Ergebnis der Produktsuche @endif: {{ $searchInput }}

{{-- {{ dd($searchProducts) }} --}}
@if(count($searchProducts) > 0) @foreach($searchProducts as $pro)
{{ $pro->title }}
{{ $pro->manufacturer }}

{{ $pro->title }}

@php $vatprice = 0; @endphp @if($pro->vat_rate) @php $vatprice = round(selling_price($pro)*$pro->vat_rate/100,2); @endphp @endif
@csrf
@if($pro->stock_available == 'Available') @else

Artikel momentan nicht verfügbar, kontaktieren Sie uns gerne. {{selling_price($pro)+$vatprice}}{{ config('app.symbol')}}

@endif
@if($pro->stock_available == 'Available')
@endif
@csrf
@endforeach @else @endif
{{ $searchProducts->links('pagination.custom')}}
@if($partnerList) @endif @endsection