@extends('layout') @section('title', 'Search Product') @section('content') @if(session('customer_id')) @endif

{{ __('text.products') }}

@forelse($searchData as $d)
Product Image
{{ $d->name }}

{{ __('text.price') }}: @if(session('currency_id')) {{ session('currency_symbol') }} @php $currencyValue = session('value') ?? 1; $totalPrice = $currencyValue * $d->price; @endphp {{ $totalPrice }}

@else {{$symbol}} {{$d->price}}

@endif
@empty
@endforelse
{{ $searchData->appends(['search'=>$name ?? ''])->links() }}
@endsection